DeskTop.js 706 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216
  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.hkaceteacherDeskIcon = [
  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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  727. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  728. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  729. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  730. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  731. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  732. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  735. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  736. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  737. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  738. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  739. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.hkaceStudentDeskIcon = [
  744. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSteacherDeskIcon = [
  753. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  754. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  756. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  762. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  763. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  764. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  765. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  766. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  768. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  769. ];
  770. //香海正覺蓮社佛教正覺中學
  771. U.MD.D.I.hkZJLSStudentDeskIcon = [
  772. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  776. ];
  777. //云海
  778. U.MD.D.I.yunhaiTeacherDeskIcon = [
  779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  781. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  782. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  786. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  787. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  788. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  789. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  790. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  791. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  792. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  794. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  797. ];
  798. //福田
  799. U.MD.D.I.heyuanTeacherDeskIcon = [
  800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  802. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  803. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  804. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  805. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  806. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  807. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  808. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  809. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //福田
  814. U.MD.D.I.heyuanAdminDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  823. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  826. ];
  827. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  828. U.MD.D.I.szherTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  836. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  837. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  839. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  840. ];
  841. //dsei
  842. U.MD.D.I.dseiTeacherDeskIcon = [
  843. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  844. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  845. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  846. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  847. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  849. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  850. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  851. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  852. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  853. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  854. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  855. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  856. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  857. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  858. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  859. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  860. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  861. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  862. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  863. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  864. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  865. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  866. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  867. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  868. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  869. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  870. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  871. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  872. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  873. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  874. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  875. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  876. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  877. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  878. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  879. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  880. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  881. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  883. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  884. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  886. ];
  887. //dsei
  888. U.MD.D.I.dseiAdminDeskIcon = [
  889. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  890. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  891. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  892. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  893. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  895. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  896. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  898. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  900. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  902. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  903. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  904. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  905. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  906. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  907. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  908. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  909. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  910. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  911. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  912. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  913. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  915. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  916. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  918. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  919. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  920. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  921. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  923. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  924. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  925. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  926. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  928. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  929. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  932. ];
  933. //dsei
  934. U.MD.D.I.dseiStudentDeskIcon = [
  935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  938. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. ];
  942. //未来教育基地
  943. U.MD.D.I.szjkyTeacherDeskIcon = [
  944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  948. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  949. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  950. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  951. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  954. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  955. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  956. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  957. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  959. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  960. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  961. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  962. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  963. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  964. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  965. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  966. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  967. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  968. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  970. ];
  971. //未来教育基地
  972. U.MD.D.I.szjkyAdminDeskIcon = [
  973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  978. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  979. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  980. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  981. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  982. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  983. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  984. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  985. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  986. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  987. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  989. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  990. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  991. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  992. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  993. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  994. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  995. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  996. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  997. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  998. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  999. ];
  1000. //未来教育基地
  1001. U.MD.D.I.szjkyStudentDeskIcon = [
  1002. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1006. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1007. ];
  1008. //成华教育局
  1009. U.MD.D.I.chjyjTeacherDeskIcon = [
  1010. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1011. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1012. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1013. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1014. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1015. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1016. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1017. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1018. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1019. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1020. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1024. ];
  1025. //成华教育局chjyj
  1026. U.MD.D.I.chjyjAdminDeskIcon = [
  1027. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1028. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1032. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1033. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1034. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1035. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1036. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1037. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1038. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1039. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1040. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1041. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1042. ];
  1043. //成华教育局chjyj
  1044. U.MD.D.I.chjyjStudentDeskIcon = [
  1045. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. ];
  1050. //tpc
  1051. U.MD.D.I.tpcStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. ];
  1057. //tpc
  1058. U.MD.D.I.tpcTeacherDeskIcon = [
  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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1064. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1066. ];
  1067. //tpc
  1068. U.MD.D.I.tpcAdminDeskIcon = [
  1069. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1070. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1072. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1074. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1075. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1076. ];
  1077. //THU-IOE
  1078. U.MD.D.I.thuioeTeacherDeskIcon = [
  1079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1086. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1087. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1088. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1089. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1090. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1091. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1092. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1093. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1094. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1095. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1096. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1097. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1098. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1099. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1100. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1101. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1102. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1103. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1104. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1105. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1106. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1107. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1108. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1109. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1110. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1111. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1112. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1116. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1117. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1118. ];
  1119. //THU-IOE
  1120. U.MD.D.I.thuioeStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //jccssyl
  1127. U.MD.D.I.jccssylTeacherDeskIcon = [
  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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //jccssyl
  1149. U.MD.D.I.jccssylStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //cale
  1156. U.MD.D.I.caleTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1164. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1169. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1170. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1171. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1172. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1173. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1174. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1175. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1176. ];
  1177. //cale
  1178. U.MD.D.I.caleStudentDeskIcon = [
  1179. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1181. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1183. ];
  1184. //lqwmsgzs
  1185. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1186. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1187. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1188. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1189. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1190. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1191. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1192. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1193. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1194. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1195. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1196. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1197. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1198. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1199. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1200. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1201. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1202. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1203. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1204. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1205. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1206. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1207. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1208. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1209. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1210. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1211. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1212. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1213. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1214. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1215. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1216. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1217. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1218. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1219. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1220. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1221. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1223. ];
  1224. //lqwmsgzs
  1225. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyTeacherDeskIcon = [
  1233. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1234. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1239. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1242. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1244. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1245. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1246. ];
  1247. //盐田区幼儿园
  1248. U.MD.D.I.ytyStudentDeskIcon = [
  1249. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1250. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1251. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1252. ];
  1253. //scnuai
  1254. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1255. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1256. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1257. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1258. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1259. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1260. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1261. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1262. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1263. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1264. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1265. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1266. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1267. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1273. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1274. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1275. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1276. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1277. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1278. ];
  1279. //scnuai
  1280. U.MD.D.I.scnuaiAdminDeskIcon = [
  1281. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1282. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1286. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1287. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1288. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1289. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1290. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1291. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1292. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1293. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1295. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1296. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1297. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1298. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1299. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1300. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1301. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1302. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1303. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1304. ];
  1305. //scnuai
  1306. U.MD.D.I.scnuaiStudentDeskIcon = [
  1307. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1309. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. ];
  1312. //cocobiz
  1313. U.MD.D.I.cocobizteacherDeskIcon = [
  1314. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1316. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1317. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1321. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1322. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1323. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1324. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1325. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1326. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1327. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1328. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1329. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1330. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1331. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1332. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1333. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1334. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1335. ];
  1336. //cocobiz
  1337. U.MD.D.I.cocobizStudentDeskIcon = [
  1338. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1339. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1340. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1341. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. ];
  1345. //xxzjky
  1346. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1347. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1348. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1350. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1354. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1355. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1356. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1357. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1358. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1359. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1360. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1361. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1362. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1363. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1364. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1366. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1367. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1368. ];
  1369. //xxzjky
  1370. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1371. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1372. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1374. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1375. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //nsfx
  1379. U.MD.D.I.nsfxTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1389. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1392. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1393. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1395. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1396. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1397. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1398. ];
  1399. //nsfx
  1400. U.MD.D.I.nsfxStudentDeskIcon = [
  1401. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1405. ];
  1406. //stia
  1407. U.MD.D.I.stiaTeacherDeskIcon = [
  1408. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1409. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1411. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1412. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1413. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1414. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1417. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1418. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1419. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1420. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1421. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1422. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1423. ];
  1424. //stia
  1425. U.MD.D.I.stiaStudentDeskIcon = [
  1426. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. ];
  1431. //szdjg
  1432. U.MD.D.I.szdjgTeacherDeskIcon = [
  1433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. ];
  1436. //szdjg
  1437. U.MD.D.I.szdjgStudentDeskIcon = [
  1438. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1439. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1440. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. ];
  1443. //010607
  1444. U.MD.D.I.x010607TeacherDeskIcon = [
  1445. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1446. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1448. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1449. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1450. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1451. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1452. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1453. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1456. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1457. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1458. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1459. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1460. ];
  1461. //010607
  1462. U.MD.D.I.x010607StudentDeskIcon = [
  1463. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.x010608TeacherDeskIcon = [
  1470. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1471. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1473. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1474. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1475. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1476. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1477. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1480. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1481. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1484. ];
  1485. //010608
  1486. U.MD.D.I.x010608StudentDeskIcon = [
  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. //xhly
  1493. U.MD.D.I.xhlyTeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. ];
  1496. //010608
  1497. U.MD.D.I.xhlyStudentDeskIcon = [
  1498. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1499. ];
  1500. //北师大
  1501. U.MD.D.I.BSDNSteacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1513. ];
  1514. //北师大
  1515. U.MD.D.I.BSDNSstudentDeskIcon = [
  1516. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1517. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1518. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1520. ];
  1521. //CUHK_EDU
  1522. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1523. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1524. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1526. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1527. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1528. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1529. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1530. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1534. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1537. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1538. ];
  1539. //CUHK_EDU
  1540. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //010503
  1547. U.MD.D.I.x010503TeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1556. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1557. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1558. ];
  1559. //010503
  1560. U.MD.D.I.x010503StudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //SPROUT Lab
  1567. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1575. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1577. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1578. ];
  1579. //SPROUT Lab
  1580. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //010204
  1587. U.MD.D.I.x010204TeacherDeskIcon = [
  1588. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1589. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1590. ];
  1591. //010204
  1592. U.MD.D.I.x010204StudentDeskIcon = [
  1593. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //trail
  1599. U.MD.D.I.trailTeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //trail
  1605. U.MD.D.I.trailStudentDeskIcon = [
  1606. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1607. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1608. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1609. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //trial
  1612. U.MD.D.I.trialTeacherDeskIcon = [
  1613. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1614. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1615. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1616. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1619. ];
  1620. //trial
  1621. U.MD.D.I.trialStudentDeskIcon = [
  1622. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1623. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1624. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1625. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. ];
  1627. //010504
  1628. U.MD.D.I.x010504TeacherDeskIcon = [
  1629. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1630. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1631. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1632. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1633. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1634. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1635. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1636. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1637. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1638. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1639. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1640. ];
  1641. //010504
  1642. U.MD.D.I.x010504StudentDeskIcon = [
  1643. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. ];
  1648. //010505
  1649. U.MD.D.I.x010505TeacherDeskIcon = [
  1650. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1651. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1652. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1653. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1656. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1658. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1659. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1660. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1661. ];
  1662. //010505
  1663. U.MD.D.I.x010505StudentDeskIcon = [
  1664. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1666. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1667. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. ];
  1669. //SCNUET
  1670. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1673. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1676. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1677. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1678. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1679. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1680. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1681. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1683. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1684. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1685. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1688. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1689. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1690. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1691. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1693. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1694. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1695. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1696. ];
  1697. //SCNUET
  1698. U.MD.D.I.SCNUETAdminDeskIcon = [
  1699. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1700. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1703. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1704. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1705. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1706. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1707. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1708. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1709. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1710. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1711. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1712. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1713. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1716. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1717. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1718. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1719. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1723. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETStudentDeskIcon = [
  1727. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1731. ];
  1732. //x020201
  1733. U.MD.D.I.x020201TeacherDeskIcon = [
  1734. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1735. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1736. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1738. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1741. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1744. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1745. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1748. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1749. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1750. ];
  1751. //x020201
  1752. U.MD.D.I.x020201AdminDeskIcon = [
  1753. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1754. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1755. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1757. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1758. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1761. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1762. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1763. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1764. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1765. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1766. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1767. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1768. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1769. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1770. ];
  1771. //020201
  1772. U.MD.D.I.x020201StudentDeskIcon = [
  1773. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1774. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1775. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1776. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1777. ];
  1778. //010611
  1779. U.MD.D.I.x010611TeacherDeskIcon = [
  1780. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1781. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1782. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1783. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1788. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1789. ];
  1790. //010611
  1791. U.MD.D.I.x010611StudentDeskIcon = [
  1792. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. ];
  1797. //010612
  1798. U.MD.D.I.x010612TeacherDeskIcon = [
  1799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1801. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1802. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1803. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1805. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1806. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1807. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1808. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1809. ];
  1810. //010612
  1811. U.MD.D.I.x010612StudentDeskIcon = [
  1812. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1813. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1814. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1815. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1816. ];
  1817. //tianyuan
  1818. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1819. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1820. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1821. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1822. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1823. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1825. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1827. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1828. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1829. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1830. ];
  1831. //010611
  1832. U.MD.D.I.tianyuanStudentDeskIcon = [
  1833. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1835. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1837. ];
  1838. //320101
  1839. U.MD.D.I.x320101TeacherDeskIcon = [
  1840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1842. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1843. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1844. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1845. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1846. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1847. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1848. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1849. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1850. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1851. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1852. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1853. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1854. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1855. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1856. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1857. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1858. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1859. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1860. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1861. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1862. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1863. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1864. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1865. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1866. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1867. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1868. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1869. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1870. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1871. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1873. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1876. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1877. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1878. ];
  1879. //320101
  1880. U.MD.D.I.x320101StudentDeskIcon = [
  1881. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1883. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1884. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1885. ];
  1886. //szsy
  1887. U.MD.D.I.szsyTeacherDeskIcon = [
  1888. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1889. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1890. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1891. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1892. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1893. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1894. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1895. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1896. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1897. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1898. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1899. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1900. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1901. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1902. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1903. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1904. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1905. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1906. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1907. ];
  1908. //szsy
  1909. U.MD.D.I.szsyStudentDeskIcon = [
  1910. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1911. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1912. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1913. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1914. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1915. ];
  1916. //010404
  1917. U.MD.D.I.x010404TeacherDeskIcon = [
  1918. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1919. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1920. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1921. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1924. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1927. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1928. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1929. ];
  1930. //010404
  1931. U.MD.D.I.x010404StudentDeskIcon = [
  1932. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1934. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1935. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1936. ];
  1937. //#region 桌面初始化a
  1938. /**
  1939. * 初始化桌面的起始函数
  1940. *
  1941. */
  1942. U.MD.D.I.init = function () {
  1943. if ($("#U_MD_D_K")[0]) {
  1944. //初始化桌面图标
  1945. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1946. // var clickUrl = ':12588/requestIp.php';
  1947. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1948. // U.MD.D.I.Ip = data;
  1949. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1950. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1951. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1952. // })
  1953. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1954. // })
  1955. }
  1956. }
  1957. /**
  1958. * 模式切换
  1959. *
  1960. */
  1961. U.MD.D.I.ModeCheck = function (type) {
  1962. if (US.Config.type == type) {
  1963. return
  1964. }
  1965. US.Config.type = type
  1966. $('.U_PBL_Check .active')[0].className = ''
  1967. if (type == 1) {
  1968. $('.U_PBL_Check div')[0].className = 'active'
  1969. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1970. } else {
  1971. $('.U_PBL_Check div')[1].className = 'active'
  1972. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1973. }
  1974. //初始化桌面图标
  1975. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1976. if (type == 2) {
  1977. U.MD.D.I.openApplication("project")
  1978. }
  1979. }
  1980. /**
  1981. * 隐藏任务栏
  1982. *
  1983. * @param {element} 桌面元素
  1984. */
  1985. U.MD.D.I.hiddenTaskbar = function (el) {
  1986. //任务栏位置变小
  1987. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1988. //桌面的位置变大
  1989. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1990. }
  1991. /**
  1992. * 隐藏任务栏
  1993. *
  1994. * @param {element} 桌面元素
  1995. */
  1996. U.MD.D.I.hiddenTaskbarout = function (el) {
  1997. //任务栏位置变小
  1998. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1999. //任务栏位置变化
  2000. U.selectEl(el).css({ "bottom": "-60px" });
  2001. //桌面的位置变大
  2002. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2003. }
  2004. }
  2005. /**
  2006. * 初始化打印桌面图标
  2007. *
  2008. * @param {element} 桌面元素
  2009. */
  2010. U.MD.D.I.initDesktopIcons = function (el, type) {
  2011. var i, //用于循环
  2012. _content, //桌面图标元素
  2013. _iconcontent, //桌面图标元素
  2014. _frag = $$("frag"), //定义一个碎片元素
  2015. _type = US.userInfo.type,
  2016. _org = US.userInfo.org,
  2017. _oid = US.userInfo.organizeid,
  2018. _role = US.userInfo.role,
  2019. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2020. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2021. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2022. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2023. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2024. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2025. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2026. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2027. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2028. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2029. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2030. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2031. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2032. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2033. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2034. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2035. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2036. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2037. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2038. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2039. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2040. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2041. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2042. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2043. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2044. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2045. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2046. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2047. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2048. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2049. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2050. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2051. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2052. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2053. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2054. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2055. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2056. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2057. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2058. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2059. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2060. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2061. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2062. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2063. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2064. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2065. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2066. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2067. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2068. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2069. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2070. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2071. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2072. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2073. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2074. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2075. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2076. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2077. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2078. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2079. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2080. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2081. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2082. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2083. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2084. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2085. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2086. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2087. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2088. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2089. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2090. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2091. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2092. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2093. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2094. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2095. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2096. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2097. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2098. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2099. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2100. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2101. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2102. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2103. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2104. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2105. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2106. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2107. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2108. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2109. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2110. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2111. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2112. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2113. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2114. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2115. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2116. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2117. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2118. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2119. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2120. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2121. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2122. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2123. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2124. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2125. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2126. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2127. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2128. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2129. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2130. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2131. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2132. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2133. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2134. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2135. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2136. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2137. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2138. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2139. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2140. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2141. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2142. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2143. 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'];
  2144. 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'];
  2145. //清楚桌面图标
  2146. el.innerHTML = "";
  2147. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2148. _teacherDesktopIconInfo.push(
  2149. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2150. { "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)" } },
  2151. )
  2152. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2153. }
  2154. 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 == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2155. _teacherDesktopIconInfo.push(
  2156. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2157. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2158. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2159. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2160. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2161. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2162. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2163. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2164. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2165. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2166. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2167. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2168. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2169. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2170. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2171. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2172. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2173. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2174. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2175. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2176. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2177. )
  2178. }
  2179. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2180. _teacherDesktopIconInfo.push(
  2181. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2182. )
  2183. }
  2184. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2185. _nsfxTeacherDeskIconInfo.push(
  2186. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2187. )
  2188. }
  2189. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2190. // _teacherDesktopIconInfo.push(
  2191. // )
  2192. // }
  2193. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2194. _teacherDesktopIconInfo.push(
  2195. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2196. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2197. )
  2198. }
  2199. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2200. _teacherDesktopIconInfo.push(
  2201. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2203. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2204. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2205. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2206. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2207. )
  2208. _studentDesktopIconInfo.push(
  2209. )
  2210. }
  2211. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2212. _teacherDesktopIconInfo.push(
  2213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2214. )
  2215. _studentDesktopIconInfo.push(
  2216. )
  2217. }
  2218. //010606 组织
  2219. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2220. _teacherDesktopIconInfo.push(
  2221. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2222. )
  2223. _studentDesktopIconInfo.push(
  2224. )
  2225. }
  2226. //麒麟二中 和 民新小学
  2227. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2228. _teacherDesktopIconInfo.push(
  2229. )
  2230. }
  2231. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2232. _teacherDesktopIconInfo.push(
  2233. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2234. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2236. )
  2237. }
  2238. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2239. _hkTeacherDeskIconInfo.push(
  2240. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2241. )
  2242. }
  2243. //北师大附中(010601)
  2244. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2245. // _teacherDesktopIconInfo.push(
  2246. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. // )
  2248. // _studentDesktopIconInfo.push(
  2249. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2250. // )
  2251. // }
  2252. //樂善堂余近卿中學
  2253. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2254. _teacherDesktopIconInfo.push(
  2255. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2256. )
  2257. }
  2258. // Education Artificial Intelligence
  2259. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2260. _teacherDesktopIconInfo.push(
  2261. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2262. )
  2263. }
  2264. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2265. _teacherDesktopIconInfo.push(
  2266. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2267. )
  2268. }
  2269. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2270. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2271. _teacherDesktopIconInfo.push(
  2272. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2273. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2274. )
  2275. }
  2276. //麒麟二中
  2277. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2278. _studentDesktopIconInfo.push(
  2279. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2280. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2281. )
  2282. }
  2283. //万科双语
  2284. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2285. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2286. if (el.Name == '项目管理') {
  2287. el.Name = 'PBL项目'
  2288. }
  2289. return el
  2290. })
  2291. _studentDesktopIconInfo3.push(
  2292. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2293. )
  2294. }
  2295. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2296. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2297. return el.Name != '魔盒识字' && el.Name != '24点'
  2298. })
  2299. }
  2300. 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) {
  2301. _studentDesktopIconInfo.push(
  2302. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2303. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2304. )
  2305. }
  2306. //循环创建桌面图标
  2307. if (type == 1) {
  2308. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2309. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_studentDesktopIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_studentDesktopIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2326. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_hkZJLSStudentDeskIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2341. } //
  2342. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2343. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_ytyStudentDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_ytyStudentDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2358. } //
  2359. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2360. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_jccssylStudentDeskIconInfo[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_jccssylStudentDeskIconInfo[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2375. }
  2376. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2377. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2378. _content = $$("div", {
  2379. className: "U_MD_D_KO",
  2380. "onmousedown": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_scnuaiStudentDeskIconInfo[i]]),
  2384. "onclick": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_scnuaiStudentDeskIconInfo[i]])
  2388. }, _frag); //
  2389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2392. }
  2393. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2394. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2395. _content = $$("div", {
  2396. className: "U_MD_D_KO",
  2397. "onmousedown": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_caleStudentDeskIconInfo[i]]),
  2401. "onclick": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_caleStudentDeskIconInfo[i]])
  2405. }, _frag); //
  2406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2409. }
  2410. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2411. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_thuioeStudentDeskIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_thuioeStudentDeskIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2428. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2429. _content = $$("div", {
  2430. className: "U_MD_D_KO",
  2431. "onmousedown": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_tpcStudentDeskIconInfo[i]]),
  2435. "onclick": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_tpcStudentDeskIconInfo[i]])
  2439. }, _frag); //
  2440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2443. } //
  2444. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2445. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_chjyjStudentDeskIconInfo[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_chjyjStudentDeskIconInfo[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2460. }
  2461. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2462. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2463. _content = $$("div", {
  2464. className: "U_MD_D_KO",
  2465. "onmousedown": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_szjkyStudentDeskIconInfo[i]]),
  2469. "onclick": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_szjkyStudentDeskIconInfo[i]])
  2473. }, _frag); //
  2474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2477. }
  2478. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2479. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2480. _content = $$("div", {
  2481. className: "U_MD_D_KO",
  2482. "onmousedown": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_x020201StudentDeskIconInfo[i]]),
  2486. "onclick": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_x020201StudentDeskIconInfo[i]])
  2490. }, _frag); //
  2491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2494. }
  2495. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2496. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2497. _content = $$("div", {
  2498. className: "U_MD_D_KO",
  2499. "onmousedown": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_SCNUETStudentDeskIconInfo[i]]),
  2503. "onclick": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_SCNUETStudentDeskIconInfo[i]])
  2507. }, _frag); //
  2508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2511. }
  2512. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2513. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2514. _content = $$("div", {
  2515. className: "U_MD_D_KO",
  2516. "onmousedown": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_dseiStudentDeskIconInfo[i]]),
  2520. "onclick": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_dseiStudentDeskIconInfo[i]])
  2524. }, _frag); //
  2525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2528. }
  2529. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2530. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2531. _content = $$("div", {
  2532. className: "U_MD_D_KO",
  2533. "onmousedown": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2537. "onclick": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2541. }, _frag); //
  2542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2545. }
  2546. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2547. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2548. _content = $$("div", {
  2549. className: "U_MD_D_KO",
  2550. "onmousedown": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_nsfxStudentDeskIconInfo[i]]),
  2554. "onclick": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_nsfxStudentDeskIconInfo[i]])
  2558. }, _frag); //
  2559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2562. }
  2563. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2564. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2565. _content = $$("div", {
  2566. className: "U_MD_D_KO",
  2567. "onmousedown": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_stiaStudentDeskIconInfo[i]]),
  2571. "onclick": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_stiaStudentDeskIconInfo[i]])
  2575. }, _frag); //
  2576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2579. }
  2580. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2581. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2582. _content = $$("div", {
  2583. className: "U_MD_D_KO",
  2584. "onmousedown": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_szdjgStudentDeskIconInfo[i]]),
  2588. "onclick": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_szdjgStudentDeskIconInfo[i]])
  2592. }, _frag); //
  2593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2596. }
  2597. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2598. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2599. _content = $$("div", {
  2600. className: "U_MD_D_KO",
  2601. "onmousedown": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_x010607StudentDeskIconInfo[i]]),
  2605. "onclick": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_x010607StudentDeskIconInfo[i]])
  2609. }, _frag); //
  2610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2613. }
  2614. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2615. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2616. _content = $$("div", {
  2617. className: "U_MD_D_KO",
  2618. "onmousedown": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_xhlyStudentDeskIconInfo[i]]),
  2622. "onclick": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_xhlyStudentDeskIconInfo[i]])
  2626. }, _frag); //
  2627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2630. }
  2631. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2632. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2633. _content = $$("div", {
  2634. className: "U_MD_D_KO",
  2635. "onmousedown": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2639. "onclick": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2643. }, _frag); //
  2644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2647. }
  2648. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2649. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2650. _content = $$("div", {
  2651. className: "U_MD_D_KO",
  2652. "onmousedown": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_x010503StudentDeskIconInfo[i]]),
  2656. "onclick": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_x010503StudentDeskIconInfo[i]])
  2660. }, _frag); //
  2661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2664. }
  2665. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2666. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2667. _content = $$("div", {
  2668. className: "U_MD_D_KO",
  2669. "onmousedown": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_x010504StudentDeskIconInfo[i]]),
  2673. "onclick": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_x010504StudentDeskIconInfo[i]])
  2677. }, _frag); //
  2678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2681. }
  2682. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2683. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2684. _content = $$("div", {
  2685. className: "U_MD_D_KO",
  2686. "onmousedown": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_x010505StudentDeskIconInfo[i]]),
  2690. "onclick": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_x010505StudentDeskIconInfo[i]])
  2694. }, _frag); //
  2695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2698. }
  2699. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2700. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2701. _content = $$("div", {
  2702. className: "U_MD_D_KO",
  2703. "onmousedown": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_x010404StudentDeskIconInfo[i]]),
  2707. "onclick": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_x010404StudentDeskIconInfo[i]])
  2711. }, _frag); //
  2712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2715. }
  2716. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2717. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x010204StudentDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_x010204StudentDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2734. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2735. _content = $$("div", {
  2736. className: "U_MD_D_KO",
  2737. "onmousedown": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_x320101StudentDeskIconInfo[i]]),
  2741. "onclick": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_x320101StudentDeskIconInfo[i]])
  2745. }, _frag); //
  2746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2749. }
  2750. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2751. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2752. _content = $$("div", {
  2753. className: "U_MD_D_KO",
  2754. "onmousedown": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_trailStudentDeskIconInfo[i]]),
  2758. "onclick": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_trailStudentDeskIconInfo[i]])
  2762. }, _frag); //
  2763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2766. }
  2767. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2768. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2769. _content = $$("div", {
  2770. className: "U_MD_D_KO",
  2771. "onmousedown": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_trialStudentDeskIconInfo[i]]),
  2775. "onclick": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_trialStudentDeskIconInfo[i]])
  2779. }, _frag); //
  2780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2783. }
  2784. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2785. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2786. _content = $$("div", {
  2787. className: "U_MD_D_KO",
  2788. "onmousedown": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2792. "onclick": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2796. }, _frag); //
  2797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2800. }
  2801. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2802. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2803. _content = $$("div", {
  2804. className: "U_MD_D_KO",
  2805. "onmousedown": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_szsyStudentDeskIconInfo[i]]),
  2809. "onclick": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_szsyStudentDeskIconInfo[i]])
  2813. }, _frag); //
  2814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2817. }
  2818. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2819. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2820. _content = $$("div", {
  2821. className: "U_MD_D_KO",
  2822. "onmousedown": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_x010608StudentDeskIconInfo[i]]),
  2826. "onclick": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_x010608StudentDeskIconInfo[i]])
  2830. }, _frag); //
  2831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2834. }
  2835. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2836. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2837. _content = $$("div", {
  2838. className: "U_MD_D_KO",
  2839. "onmousedown": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_x010611StudentDeskIconInfo[i]]),
  2843. "onclick": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_x010611StudentDeskIconInfo[i]])
  2847. }, _frag); //
  2848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2851. }
  2852. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2853. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2854. _content = $$("div", {
  2855. className: "U_MD_D_KO",
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_x010612StudentDeskIconInfo[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_x010612StudentDeskIconInfo[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2868. }
  2869. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2870. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2871. _content = $$("div", {
  2872. className: "U_MD_D_KO",
  2873. "onmousedown": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_tianyuantudentDeskIconInfo[i]]),
  2877. "onclick": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_tianyuantudentDeskIconInfo[i]])
  2881. }, _frag); //
  2882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2885. }
  2886. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2887. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2888. _content = $$("div", {
  2889. className: "U_MD_D_KO",
  2890. "onmousedown": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_siesStudentDeskIconInfo[i]]),
  2894. "onclick": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_siesStudentDeskIconInfo[i]])
  2898. }, _frag); //
  2899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2902. }
  2903. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2904. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2905. _content = $$("div", {
  2906. className: "U_MD_D_KO",
  2907. "onmousedown": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_guzmsStudentDeskIconInfo[i]]),
  2911. "onclick": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_guzmsStudentDeskIconInfo[i]])
  2915. }, _frag); //
  2916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2919. }
  2920. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2921. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2922. _content = $$("div", {
  2923. className: "U_MD_D_KO",
  2924. "onmousedown": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_hkStudentDeskIconInfo[i]]),
  2928. "onclick": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_hkStudentDeskIconInfo[i]])
  2932. }, _frag); //
  2933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2936. }
  2937. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2938. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2939. _content = $$("div", {
  2940. className: "U_MD_D_KO",
  2941. "onmousedown": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_hkaceStudentDeskIconInfo[i]]),
  2945. "onclick": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_hkaceStudentDeskIconInfo[i]])
  2949. }, _frag); //
  2950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2953. }
  2954. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2955. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2956. _content = $$("div", {
  2957. className: "U_MD_D_KO",
  2958. "onmousedown": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2962. "onclick": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_BSDNSstudentDesktopIconInfo[i]])
  2966. }, _frag); //
  2967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2970. }
  2971. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2972. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2973. _content = $$("div", {
  2974. className: "U_MD_D_KO",
  2975. "onmousedown": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_cocobizStudentDeskIconInfo[i]]),
  2979. "onclick": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_cocobizStudentDeskIconInfo[i]])
  2983. }, _frag); //
  2984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2987. }
  2988. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2989. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2990. _content = $$("div", {
  2991. className: "U_MD_D_KO",
  2992. "onmousedown": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2996. "onclick": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_xxzjkyStudentDeskIconInfo[i]])
  3000. }, _frag); //
  3001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3004. }
  3005. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3006. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3007. _content = $$("div", {
  3008. className: "U_MD_D_KO",
  3009. "onmousedown": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_studentDesktopIconInfo[i]]),
  3013. "onclick": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_studentDesktopIconInfo[i]])
  3017. }, _frag); //
  3018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3021. }
  3022. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3023. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3024. _content = $$("div", {
  3025. className: "U_MD_D_KO",
  3026. "onmousedown": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_tcStudentDeskIconInfo[i]]),
  3030. "onclick": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_tcStudentDeskIconInfo[i]])
  3034. }, _frag); //
  3035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3038. }
  3039. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3040. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3041. _content = $$("div", {
  3042. className: "U_MD_D_KO",
  3043. "onmousedown": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_szscStudentDeskIconInfo[i]]),
  3047. "onclick": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_szscStudentDeskIconInfo[i]])
  3051. }, _frag); //
  3052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3055. }
  3056. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3057. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_studentDesktopIconInfo3[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_studentDesktopIconInfo3[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3072. }
  3073. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3074. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_studentDesktopIconInfo2[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_studentDesktopIconInfo2[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3091. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3092. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3093. continue
  3094. }
  3095. _content = $$("div", {
  3096. className: "U_MD_D_KO",
  3097. "onmousedown": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_wanketeacherDesktopIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_wanketeacherDesktopIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3111. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3112. _content = $$("div", {
  3113. className: "U_MD_D_KO",
  3114. "onmousedown": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_wankeAdminDesktopIconInfo[i]]),
  3118. "onclick": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_wankeAdminDesktopIconInfo[i]])
  3122. }, _frag); //
  3123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3126. }
  3127. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3128. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3129. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3130. continue
  3131. }
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_scnuaiTeacherDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3148. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3149. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_BSDNSteacherDesktopIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3168. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3169. _content = $$("div", {
  3170. className: "U_MD_D_KO",
  3171. "onmousedown": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_scnuaiAdminDeskIconInfo[i]]),
  3175. "onclick": U.UF.C.closure(function (obj) {
  3176. //防止拖动图标即打开了桌面应用
  3177. U.MD.D.click(this, obj);
  3178. }, [_scnuaiAdminDeskIconInfo[i]])
  3179. }, _frag); //
  3180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3183. }
  3184. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3185. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3186. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3187. continue
  3188. }
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_jccssylTeacherDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_jccssylTeacherDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3205. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_caleTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_caleTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3225. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3226. _content = $$("div", {
  3227. className: "U_MD_D_KO",
  3228. "onmousedown": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_tpcOrganizerDeskIconInfo[i]]),
  3232. "onclick": U.UF.C.closure(function (obj) {
  3233. //防止拖动图标即打开了桌面应用
  3234. U.MD.D.click(this, obj);
  3235. }, [_tpcOrganizerDeskIconInfo[i]])
  3236. }, _frag); //
  3237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3240. }
  3241. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3242. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3243. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3244. continue
  3245. }
  3246. _content = $$("div", {
  3247. className: "U_MD_D_KO",
  3248. "onmousedown": U.UF.C.closure(function (obj) {
  3249. //防止拖动图标即打开了桌面应用
  3250. U.MD.D.click(this, obj);
  3251. }, [_tpcTeacherDeskIconInfo[i]]),
  3252. "onclick": U.UF.C.closure(function (obj) {
  3253. //防止拖动图标即打开了桌面应用
  3254. U.MD.D.click(this, obj);
  3255. }, [_tpcTeacherDeskIconInfo[i]])
  3256. }, _frag); //
  3257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3260. }
  3261. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3262. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3263. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3264. continue
  3265. }
  3266. _content = $$("div", {
  3267. className: "U_MD_D_KO",
  3268. "onmousedown": U.UF.C.closure(function (obj) {
  3269. //防止拖动图标即打开了桌面应用
  3270. U.MD.D.click(this, obj);
  3271. }, [_teacherDesktopIconInfo2[i]]),
  3272. "onclick": U.UF.C.closure(function (obj) {
  3273. //防止拖动图标即打开了桌面应用
  3274. U.MD.D.click(this, obj);
  3275. }, [_teacherDesktopIconInfo2[i]])
  3276. }, _frag); //
  3277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3280. }
  3281. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3282. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3283. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3284. continue
  3285. }
  3286. _content = $$("div", {
  3287. className: "U_MD_D_KO",
  3288. "onmousedown": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_thuioeTeacherDeskIconInfo[i]]),
  3292. "onclick": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_thuioeTeacherDeskIconInfo[i]])
  3296. }, _frag); //
  3297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3300. }
  3301. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3302. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3303. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3304. continue
  3305. }
  3306. _content = $$("div", {
  3307. className: "U_MD_D_KO",
  3308. "onmousedown": U.UF.C.closure(function (obj) {
  3309. //防止拖动图标即打开了桌面应用
  3310. U.MD.D.click(this, obj);
  3311. }, [_lotechTeacherDeskIconInfo[i]]),
  3312. "onclick": U.UF.C.closure(function (obj) {
  3313. //防止拖动图标即打开了桌面应用
  3314. U.MD.D.click(this, obj);
  3315. }, [_lotechTeacherDeskIconInfo[i]])
  3316. }, _frag); //
  3317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3320. }//
  3321. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3322. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3323. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3324. continue
  3325. }
  3326. _content = $$("div", {
  3327. className: "U_MD_D_KO",
  3328. "onmousedown": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3332. "onclick": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3336. }, _frag); //
  3337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3340. }
  3341. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3342. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3343. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3344. continue
  3345. }
  3346. _content = $$("div", {
  3347. className: "U_MD_D_KO",
  3348. "onmousedown": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_siesTeacherDeskIconInfo[i]]),
  3352. "onclick": U.UF.C.closure(function (obj) {
  3353. //防止拖动图标即打开了桌面应用
  3354. U.MD.D.click(this, obj);
  3355. }, [_siesTeacherDeskIconInfo[i]])
  3356. }, _frag); //
  3357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3360. }
  3361. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3362. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3363. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3364. continue
  3365. }
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_guzmsTeacherDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_guzmsTeacherDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3380. }
  3381. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3382. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3383. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3384. continue
  3385. }
  3386. _content = $$("div", {
  3387. className: "U_MD_D_KO",
  3388. "onmousedown": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_longhuaTeacherDeskIconInfo[i]]),
  3392. "onclick": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_longhuaTeacherDeskIconInfo[i]])
  3396. }, _frag); //
  3397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3400. }
  3401. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3402. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3403. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3404. continue
  3405. }
  3406. _content = $$("div", {
  3407. className: "U_MD_D_KO",
  3408. "onmousedown": U.UF.C.closure(function (obj) {
  3409. //防止拖动图标即打开了桌面应用
  3410. U.MD.D.click(this, obj);
  3411. }, [_ytyTeacherDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖动图标即打开了桌面应用
  3414. U.MD.D.click(this, obj);
  3415. }, [_ytyTeacherDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3420. }
  3421. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3422. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3423. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3424. continue
  3425. }
  3426. _content = $$("div", {
  3427. className: "U_MD_D_KO",
  3428. "onmousedown": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3432. "onclick": U.UF.C.closure(function (obj) {
  3433. //防止拖动图标即打开了桌面应用
  3434. U.MD.D.click(this, obj);
  3435. }, [_yunhaiTeacherDeskIconInfo[i]])
  3436. }, _frag); //
  3437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3440. } //_hkStudentDeskIconInfo
  3441. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3442. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3443. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3444. continue
  3445. }
  3446. _content = $$("div", {
  3447. className: "U_MD_D_KO",
  3448. "onmousedown": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3452. "onclick": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3456. }, _frag); //
  3457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3460. }
  3461. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3462. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3463. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3464. continue
  3465. }
  3466. _content = $$("div", {
  3467. className: "U_MD_D_KO",
  3468. "onmousedown": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_ricohTeacherDeskIconInfo[i]]),
  3472. "onclick": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_ricohTeacherDeskIconInfo[i]])
  3476. }, _frag); //
  3477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3480. }
  3481. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3482. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3483. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3484. continue
  3485. }
  3486. _content = $$("div", {
  3487. className: "U_MD_D_KO",
  3488. "onmousedown": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_hkTeacherDeskIconInfo[i]]),
  3492. "onclick": U.UF.C.closure(function (obj) {
  3493. //防止拖动图标即打开了桌面应用
  3494. U.MD.D.click(this, obj);
  3495. }, [_hkTeacherDeskIconInfo[i]])
  3496. }, _frag); //
  3497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3500. }
  3501. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3502. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3503. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3504. continue
  3505. }
  3506. _content = $$("div", {
  3507. className: "U_MD_D_KO",
  3508. "onmousedown": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_hkaceTeacherDeskIconInfo[i]]),
  3512. "onclick": U.UF.C.closure(function (obj) {
  3513. //防止拖动图标即打开了桌面应用
  3514. U.MD.D.click(this, obj);
  3515. }, [_hkaceTeacherDeskIconInfo[i]])
  3516. }, _frag); //
  3517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3520. }
  3521. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3522. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3523. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3524. continue
  3525. }
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_cocobizTeacherDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖动图标即打开了桌面应用
  3534. U.MD.D.click(this, obj);
  3535. }, [_cocobizTeacherDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3542. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3543. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖动图标即打开了桌面应用
  3554. U.MD.D.click(this, obj);
  3555. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3562. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3563. _content = $$("div", {
  3564. className: "U_MD_D_KO",
  3565. "onmousedown": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_gdjgAdminDeskIconInfo[i]]),
  3569. "onclick": U.UF.C.closure(function (obj) {
  3570. //防止拖动图标即打开了桌面应用
  3571. U.MD.D.click(this, obj);
  3572. }, [_gdjgAdminDeskIconInfo[i]])
  3573. }, _frag); //
  3574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3577. }
  3578. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3579. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3580. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3581. continue
  3582. }
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_gdjgTeacherDeskIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_gdjgTeacherDeskIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3599. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3600. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_szherTeacherDeskIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_szherTeacherDeskIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3617. }
  3618. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3619. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3620. _content = $$("div", {
  3621. className: "U_MD_D_KO",
  3622. "onmousedown": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_heyuannAdminDeskIconInfo[i]]),
  3626. "onclick": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_heyuannAdminDeskIconInfo[i]])
  3630. }, _frag); //
  3631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3634. }
  3635. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3636. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3637. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3638. continue
  3639. }
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. "onmousedown": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_heyuanTeacherDeskIconInfo[i]]),
  3646. "onclick": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_heyuanTeacherDeskIconInfo[i]])
  3650. }, _frag); //
  3651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3654. } //
  3655. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3656. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_dseiAdminDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_dseiAdminDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3671. }
  3672. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3673. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_dseiTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_dseiTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. } //
  3692. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3693. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_chjyjAdminDeskIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_chjyjAdminDeskIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3708. }//
  3709. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3710. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3711. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_chjyjTeacherDeskIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_chjyjTeacherDeskIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3730. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_szjkyAdminDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_szjkyAdminDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3745. }//
  3746. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3747. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_szjkyTeacherDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_szjkyTeacherDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3767. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_x020201AdminDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_x020201AdminDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3782. }//
  3783. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3784. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_x020201TeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_x020201TeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3804. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_SCNUETAdminDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_SCNUETAdminDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3819. }//
  3820. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3821. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_SCNUETTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3841. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3842. _content = $$("div", {
  3843. className: "U_MD_D_KO",
  3844. "onmousedown": U.UF.C.closure(function (obj) {
  3845. //防止拖动图标即打开了桌面应用
  3846. U.MD.D.click(this, obj);
  3847. }, [_futianAdminDeskIconInfo[i]]),
  3848. "onclick": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_futianAdminDeskIconInfo[i]])
  3852. }, _frag); //
  3853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3858. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3859. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3860. continue
  3861. }
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_futianTeacherDeskIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_futianTeacherDeskIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3878. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3879. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_MingdeTeacherDeskIcon[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_MingdeTeacherDeskIcon[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3898. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_lhsAdminDesktopIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_lhsAdminDesktopIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3915. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3916. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3917. continue
  3918. }
  3919. _content = $$("div", {
  3920. className: "U_MD_D_KO",
  3921. "onmousedown": U.UF.C.closure(function (obj) {
  3922. //防止拖动图标即打开了桌面应用
  3923. U.MD.D.click(this, obj);
  3924. }, [_lhsteacherDesktopIconInfo[i]]),
  3925. "onclick": U.UF.C.closure(function (obj) {
  3926. //防止拖动图标即打开了桌面应用
  3927. U.MD.D.click(this, obj);
  3928. }, [_lhsteacherDesktopIconInfo[i]])
  3929. }, _frag); //
  3930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3933. }
  3934. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3935. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3936. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3937. continue
  3938. }
  3939. _content = $$("div", {
  3940. className: "U_MD_D_KO",
  3941. "onmousedown": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3945. "onclick": U.UF.C.closure(function (obj) {
  3946. //防止拖动图标即打开了桌面应用
  3947. U.MD.D.click(this, obj);
  3948. }, [_zhoujiateacherDesktopIconInfo[i]])
  3949. }, _frag); //
  3950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3953. }
  3954. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3955. for (i = 0; i < _hanDeskIcon.length; i++) {
  3956. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3957. continue
  3958. }
  3959. _content = $$("div", {
  3960. className: "U_MD_D_KO",
  3961. "onmousedown": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_hanDeskIcon[i]]),
  3965. "onclick": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_hanDeskIcon[i]])
  3969. }, _frag); //
  3970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3973. }
  3974. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3975. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3976. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3977. continue
  3978. }
  3979. _content = $$("div", {
  3980. className: "U_MD_D_KO",
  3981. "onmousedown": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_orgStemDeskIcon[i]]),
  3985. "onclick": U.UF.C.closure(function (obj) {
  3986. //防止拖动图标即打开了桌面应用
  3987. U.MD.D.click(this, obj);
  3988. }, [_orgStemDeskIcon[i]])
  3989. }, _frag); //
  3990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3993. }
  3994. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3995. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3996. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3997. continue
  3998. }
  3999. _content = $$("div", {
  4000. className: "U_MD_D_KO",
  4001. "onmousedown": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_szulsDeskIcon[i]]),
  4005. "onclick": U.UF.C.closure(function (obj) {
  4006. //防止拖动图标即打开了桌面应用
  4007. U.MD.D.click(this, obj);
  4008. }, [_szulsDeskIcon[i]])
  4009. }, _frag); //
  4010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4013. }
  4014. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4015. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4016. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4017. continue
  4018. }
  4019. _content = $$("div", {
  4020. className: "U_MD_D_KO",
  4021. "onmousedown": U.UF.C.closure(function (obj) {
  4022. //防止拖动图标即打开了桌面应用
  4023. U.MD.D.click(this, obj);
  4024. }, [_orgDesktopIconInfo[i]]),
  4025. "onclick": U.UF.C.closure(function (obj) {
  4026. //防止拖动图标即打开了桌面应用
  4027. U.MD.D.click(this, obj);
  4028. }, [_orgDesktopIconInfo[i]])
  4029. }, _frag); //
  4030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4033. }
  4034. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4035. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4036. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4037. continue
  4038. }
  4039. _content = $$("div", {
  4040. className: "U_MD_D_KO",
  4041. "onmousedown": U.UF.C.closure(function (obj) {
  4042. //防止拖动图标即打开了桌面应用
  4043. U.MD.D.click(this, obj);
  4044. }, [_schoolDesktopIconInfo[i]]),
  4045. "onclick": U.UF.C.closure(function (obj) {
  4046. //防止拖动图标即打开了桌面应用
  4047. U.MD.D.click(this, obj);
  4048. }, [_schoolDesktopIconInfo[i]])
  4049. }, _frag); //
  4050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4053. }
  4054. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4055. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4056. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4057. continue
  4058. }
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_GMteacherDesktopIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_GMteacherDesktopIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4075. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4076. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_SONGteacherDesktopIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_SONGteacherDesktopIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4095. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4096. _content = $$("div", {
  4097. className: "U_MD_D_KO",
  4098. "onmousedown": U.UF.C.closure(function (obj) {
  4099. //防止拖动图标即打开了桌面应用
  4100. U.MD.D.click(this, obj);
  4101. }, [_GMstudentDesktopIconInfo[i]]),
  4102. "onclick": U.UF.C.closure(function (obj) {
  4103. //防止拖动图标即打开了桌面应用
  4104. U.MD.D.click(this, obj);
  4105. }, [_GMstudentDesktopIconInfo[i]])
  4106. }, _frag); //
  4107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4110. }
  4111. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4112. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4113. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4114. continue
  4115. }
  4116. _content = $$("div", {
  4117. className: "U_MD_D_KO",
  4118. "onmousedown": U.UF.C.closure(function (obj) {
  4119. //防止拖动图标即打开了桌面应用
  4120. U.MD.D.click(this, obj);
  4121. }, [_tcTeacherDeskIconInfo[i]]),
  4122. "onclick": U.UF.C.closure(function (obj) {
  4123. //防止拖动图标即打开了桌面应用
  4124. U.MD.D.click(this, obj);
  4125. }, [_tcTeacherDeskIconInfo[i]])
  4126. }, _frag); //
  4127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4130. }
  4131. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4132. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4133. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4134. continue
  4135. }
  4136. _content = $$("div", {
  4137. className: "U_MD_D_KO",
  4138. "onmousedown": U.UF.C.closure(function (obj) {
  4139. //防止拖动图标即打开了桌面应用
  4140. U.MD.D.click(this, obj);
  4141. }, [_tcOrganizerDeskIconInfo[i]]),
  4142. "onclick": U.UF.C.closure(function (obj) {
  4143. //防止拖动图标即打开了桌面应用
  4144. U.MD.D.click(this, obj);
  4145. }, [_tcOrganizerDeskIconInfo[i]])
  4146. }, _frag); //
  4147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4150. }
  4151. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4152. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4153. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4154. continue
  4155. }
  4156. _content = $$("div", {
  4157. className: "U_MD_D_KO",
  4158. "onmousedown": U.UF.C.closure(function (obj) {
  4159. //防止拖动图标即打开了桌面应用
  4160. U.MD.D.click(this, obj);
  4161. }, [_szscTeacherDeskIconInfo[i]]),
  4162. "onclick": U.UF.C.closure(function (obj) {
  4163. //防止拖动图标即打开了桌面应用
  4164. U.MD.D.click(this, obj);
  4165. }, [_szscTeacherDeskIconInfo[i]])
  4166. }, _frag); //
  4167. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4170. }
  4171. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4172. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4173. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4174. continue
  4175. }
  4176. _content = $$("div", {
  4177. className: "U_MD_D_KO",
  4178. "onmousedown": U.UF.C.closure(function (obj) {
  4179. //防止拖动图标即打开了桌面应用
  4180. U.MD.D.click(this, obj);
  4181. }, [_szscOrganizerDeskIconInfo[i]]),
  4182. "onclick": U.UF.C.closure(function (obj) {
  4183. //防止拖动图标即打开了桌面应用
  4184. U.MD.D.click(this, obj);
  4185. }, [_szscOrganizerDeskIconInfo[i]])
  4186. }, _frag); //
  4187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4190. }
  4191. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4192. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4193. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4194. continue
  4195. }
  4196. _content = $$("div", {
  4197. className: "U_MD_D_KO",
  4198. "onmousedown": U.UF.C.closure(function (obj) {
  4199. //防止拖动图标即打开了桌面应用
  4200. U.MD.D.click(this, obj);
  4201. }, [_nsfxTeacherDeskIconInfo[i]]),
  4202. "onclick": U.UF.C.closure(function (obj) {
  4203. //防止拖动图标即打开了桌面应用
  4204. U.MD.D.click(this, obj);
  4205. }, [_nsfxTeacherDeskIconInfo[i]])
  4206. }, _frag); //
  4207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4210. }
  4211. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4212. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4213. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4214. continue
  4215. }
  4216. _content = $$("div", {
  4217. className: "U_MD_D_KO",
  4218. "onmousedown": U.UF.C.closure(function (obj) {
  4219. //防止拖动图标即打开了桌面应用
  4220. U.MD.D.click(this, obj);
  4221. }, [_stiaTeacherDeskIconInfo[i]]),
  4222. "onclick": U.UF.C.closure(function (obj) {
  4223. //防止拖动图标即打开了桌面应用
  4224. U.MD.D.click(this, obj);
  4225. }, [_stiaTeacherDeskIconInfo[i]])
  4226. }, _frag); //
  4227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4230. }
  4231. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4232. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4233. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4234. continue
  4235. }
  4236. _content = $$("div", {
  4237. className: "U_MD_D_KO",
  4238. "onmousedown": U.UF.C.closure(function (obj) {
  4239. //防止拖动图标即打开了桌面应用
  4240. U.MD.D.click(this, obj);
  4241. }, [_szdjgTeacherDeskIconInfo[i]]),
  4242. "onclick": U.UF.C.closure(function (obj) {
  4243. //防止拖动图标即打开了桌面应用
  4244. U.MD.D.click(this, obj);
  4245. }, [_szdjgTeacherDeskIconInfo[i]])
  4246. }, _frag); //
  4247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4250. }
  4251. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4252. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4253. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4254. continue
  4255. }
  4256. _content = $$("div", {
  4257. className: "U_MD_D_KO",
  4258. "onmousedown": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_x010607TeacherDeskIconInfo[i]]),
  4262. "onclick": U.UF.C.closure(function (obj) {
  4263. //防止拖动图标即打开了桌面应用
  4264. U.MD.D.click(this, obj);
  4265. }, [_x010607TeacherDeskIconInfo[i]])
  4266. }, _frag); //
  4267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4270. }
  4271. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4272. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4273. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4274. continue
  4275. }
  4276. _content = $$("div", {
  4277. className: "U_MD_D_KO",
  4278. "onmousedown": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_xhlyTeacherDeskIconInfo[i]]),
  4282. "onclick": U.UF.C.closure(function (obj) {
  4283. //防止拖动图标即打开了桌面应用
  4284. U.MD.D.click(this, obj);
  4285. }, [_xhlyTeacherDeskIconInfo[i]])
  4286. }, _frag); //
  4287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4290. }
  4291. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4292. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4293. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4294. continue
  4295. }
  4296. _content = $$("div", {
  4297. className: "U_MD_D_KO",
  4298. "onmousedown": U.UF.C.closure(function (obj) {
  4299. //防止拖动图标即打开了桌面应用
  4300. U.MD.D.click(this, obj);
  4301. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4302. "onclick": U.UF.C.closure(function (obj) {
  4303. //防止拖动图标即打开了桌面应用
  4304. U.MD.D.click(this, obj);
  4305. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4306. }, _frag); //
  4307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4310. }
  4311. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4312. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4313. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4314. continue
  4315. }
  4316. _content = $$("div", {
  4317. className: "U_MD_D_KO",
  4318. "onmousedown": U.UF.C.closure(function (obj) {
  4319. //防止拖动图标即打开了桌面应用
  4320. U.MD.D.click(this, obj);
  4321. }, [_x010503TeacherDeskIconInfo[i]]),
  4322. "onclick": U.UF.C.closure(function (obj) {
  4323. //防止拖动图标即打开了桌面应用
  4324. U.MD.D.click(this, obj);
  4325. }, [_x010503TeacherDeskIconInfo[i]])
  4326. }, _frag); //
  4327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4330. }
  4331. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4332. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4333. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4334. continue
  4335. }
  4336. _content = $$("div", {
  4337. className: "U_MD_D_KO",
  4338. "onmousedown": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_x010504TeacherDeskIconInfo[i]]),
  4342. "onclick": U.UF.C.closure(function (obj) {
  4343. //防止拖动图标即打开了桌面应用
  4344. U.MD.D.click(this, obj);
  4345. }, [_x010504TeacherDeskIconInfo[i]])
  4346. }, _frag); //
  4347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4350. }
  4351. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4352. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4353. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4354. continue
  4355. }
  4356. _content = $$("div", {
  4357. className: "U_MD_D_KO",
  4358. "onmousedown": U.UF.C.closure(function (obj) {
  4359. //防止拖动图标即打开了桌面应用
  4360. U.MD.D.click(this, obj);
  4361. }, [_x010505TeacherDeskIconInfo[i]]),
  4362. "onclick": U.UF.C.closure(function (obj) {
  4363. //防止拖动图标即打开了桌面应用
  4364. U.MD.D.click(this, obj);
  4365. }, [_x010505TeacherDeskIconInfo[i]])
  4366. }, _frag); //
  4367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4370. }
  4371. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4372. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4373. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4374. continue
  4375. }
  4376. _content = $$("div", {
  4377. className: "U_MD_D_KO",
  4378. "onmousedown": U.UF.C.closure(function (obj) {
  4379. //防止拖动图标即打开了桌面应用
  4380. U.MD.D.click(this, obj);
  4381. }, [_x010404TeacherDeskIconInfo[i]]),
  4382. "onclick": U.UF.C.closure(function (obj) {
  4383. //防止拖动图标即打开了桌面应用
  4384. U.MD.D.click(this, obj);
  4385. }, [_x010404TeacherDeskIconInfo[i]])
  4386. }, _frag); //
  4387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4390. }
  4391. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4392. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4393. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4394. continue
  4395. }
  4396. _content = $$("div", {
  4397. className: "U_MD_D_KO",
  4398. "onmousedown": U.UF.C.closure(function (obj) {
  4399. //防止拖动图标即打开了桌面应用
  4400. U.MD.D.click(this, obj);
  4401. }, [_x010204TeacherDeskIconInfo[i]]),
  4402. "onclick": U.UF.C.closure(function (obj) {
  4403. //防止拖动图标即打开了桌面应用
  4404. U.MD.D.click(this, obj);
  4405. }, [_x010204TeacherDeskIconInfo[i]])
  4406. }, _frag); //
  4407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4410. }
  4411. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4412. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4413. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4414. continue
  4415. }
  4416. _content = $$("div", {
  4417. className: "U_MD_D_KO",
  4418. "onmousedown": U.UF.C.closure(function (obj) {
  4419. //防止拖动图标即打开了桌面应用
  4420. U.MD.D.click(this, obj);
  4421. }, [_x320101TeacherDeskIconInfo[i]]),
  4422. "onclick": U.UF.C.closure(function (obj) {
  4423. //防止拖动图标即打开了桌面应用
  4424. U.MD.D.click(this, obj);
  4425. }, [_x320101TeacherDeskIconInfo[i]])
  4426. }, _frag); //
  4427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4430. }
  4431. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4432. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4433. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4434. continue
  4435. }
  4436. _content = $$("div", {
  4437. className: "U_MD_D_KO",
  4438. "onmousedown": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_trailTeacherDeskIconInfo[i]]),
  4442. "onclick": U.UF.C.closure(function (obj) {
  4443. //防止拖动图标即打开了桌面应用
  4444. U.MD.D.click(this, obj);
  4445. }, [_trailTeacherDeskIconInfo[i]])
  4446. }, _frag); //
  4447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4450. }
  4451. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4452. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4453. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4454. continue
  4455. }
  4456. _content = $$("div", {
  4457. className: "U_MD_D_KO",
  4458. "onmousedown": U.UF.C.closure(function (obj) {
  4459. //防止拖动图标即打开了桌面应用
  4460. U.MD.D.click(this, obj);
  4461. }, [_trialTeacherDeskIconInfo[i]]),
  4462. "onclick": U.UF.C.closure(function (obj) {
  4463. //防止拖动图标即打开了桌面应用
  4464. U.MD.D.click(this, obj);
  4465. }, [_trialTeacherDeskIconInfo[i]])
  4466. }, _frag); //
  4467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4470. }
  4471. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4472. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4473. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4474. continue
  4475. }
  4476. _content = $$("div", {
  4477. className: "U_MD_D_KO",
  4478. "onmousedown": U.UF.C.closure(function (obj) {
  4479. //防止拖动图标即打开了桌面应用
  4480. U.MD.D.click(this, obj);
  4481. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4482. "onclick": U.UF.C.closure(function (obj) {
  4483. //防止拖动图标即打开了桌面应用
  4484. U.MD.D.click(this, obj);
  4485. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4486. }, _frag); //
  4487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4490. }
  4491. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4492. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4493. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4494. continue
  4495. }
  4496. _content = $$("div", {
  4497. className: "U_MD_D_KO",
  4498. "onmousedown": U.UF.C.closure(function (obj) {
  4499. //防止拖动图标即打开了桌面应用
  4500. U.MD.D.click(this, obj);
  4501. }, [_szsyTeacherDeskIconInfo[i]]),
  4502. "onclick": U.UF.C.closure(function (obj) {
  4503. //防止拖动图标即打开了桌面应用
  4504. U.MD.D.click(this, obj);
  4505. }, [_szsyTeacherDeskIconInfo[i]])
  4506. }, _frag); //
  4507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4510. }
  4511. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4512. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4513. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4514. continue
  4515. }
  4516. _content = $$("div", {
  4517. className: "U_MD_D_KO",
  4518. "onmousedown": U.UF.C.closure(function (obj) {
  4519. //防止拖动图标即打开了桌面应用
  4520. U.MD.D.click(this, obj);
  4521. }, [_x010608TeacherDeskIconInfo[i]]),
  4522. "onclick": U.UF.C.closure(function (obj) {
  4523. //防止拖动图标即打开了桌面应用
  4524. U.MD.D.click(this, obj);
  4525. }, [_x010608TeacherDeskIconInfo[i]])
  4526. }, _frag); //
  4527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4530. }
  4531. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4532. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4533. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4534. continue
  4535. }
  4536. _content = $$("div", {
  4537. className: "U_MD_D_KO",
  4538. "onmousedown": U.UF.C.closure(function (obj) {
  4539. //防止拖动图标即打开了桌面应用
  4540. U.MD.D.click(this, obj);
  4541. }, [_x010611TeacherDeskIconInfo[i]]),
  4542. "onclick": U.UF.C.closure(function (obj) {
  4543. //防止拖动图标即打开了桌面应用
  4544. U.MD.D.click(this, obj);
  4545. }, [_x010611TeacherDeskIconInfo[i]])
  4546. }, _frag); //
  4547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4550. }
  4551. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4552. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4553. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4554. continue
  4555. }
  4556. _content = $$("div", {
  4557. className: "U_MD_D_KO",
  4558. "onmousedown": U.UF.C.closure(function (obj) {
  4559. //防止拖动图标即打开了桌面应用
  4560. U.MD.D.click(this, obj);
  4561. }, [_x010612TeacherDeskIconInfo[i]]),
  4562. "onclick": U.UF.C.closure(function (obj) {
  4563. //防止拖动图标即打开了桌面应用
  4564. U.MD.D.click(this, obj);
  4565. }, [_x010612TeacherDeskIconInfo[i]])
  4566. }, _frag); //
  4567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4570. }
  4571. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4572. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4573. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4574. continue
  4575. }
  4576. _content = $$("div", {
  4577. className: "U_MD_D_KO",
  4578. "onmousedown": U.UF.C.closure(function (obj) {
  4579. //防止拖动图标即打开了桌面应用
  4580. U.MD.D.click(this, obj);
  4581. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4582. "onclick": U.UF.C.closure(function (obj) {
  4583. //防止拖动图标即打开了桌面应用
  4584. U.MD.D.click(this, obj);
  4585. }, [_tianyuanTeacherDeskIconInfo[i]])
  4586. }, _frag); //
  4587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4590. }
  4591. } else {
  4592. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4593. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4594. continue
  4595. }
  4596. _content = $$("div", {
  4597. className: "U_MD_D_KO",
  4598. "onmousedown": U.UF.C.closure(function (obj) {
  4599. //防止拖动图标即打开了桌面应用
  4600. U.MD.D.click(this, obj);
  4601. }, [_teacherDesktopIconInfo[i]]),
  4602. "onclick": U.UF.C.closure(function (obj) {
  4603. //防止拖动图标即打开了桌面应用
  4604. U.MD.D.click(this, obj);
  4605. }, [_teacherDesktopIconInfo[i]])
  4606. }, _frag); //
  4607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4610. }
  4611. }
  4612. } else {
  4613. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4614. _content = $$("div", {
  4615. className: "U_MD_D_KO",
  4616. style: { 'width': '124px', 'height': '145px' },
  4617. "onmousedown": U.UF.C.closure(function (obj) {
  4618. //防止拖动图标即打开了桌面应用
  4619. U.MD.D.click(this, obj);
  4620. }, [_easyDesktopIconInfo[i]]),
  4621. "onclick": U.UF.C.closure(function (obj) {
  4622. //防止拖动图标即打开了桌面应用
  4623. U.MD.D.click(this, obj);
  4624. }, [_easyDesktopIconInfo[i]])
  4625. }, _frag); //
  4626. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4629. }
  4630. }
  4631. if (type == 1) {
  4632. //加载好后给图标定位
  4633. U.MD.D.iconPostion($(_frag).Child());
  4634. } else {
  4635. //加载好后给图标定位
  4636. U.MD.D.iconPostion2($(_frag).Child());
  4637. }
  4638. //把图标加载到页面
  4639. el.appendChild(_frag);
  4640. }
  4641. /**
  4642. * 显示任务栏
  4643. *
  4644. * @param {element} 桌面元素
  4645. */
  4646. U.MD.D.I.displayTaskbar = function (el) {
  4647. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4648. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4649. //任务栏位置变化
  4650. U.selectEl(el).css({ "bottom": "0px" });
  4651. //桌面位置变话
  4652. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4653. }
  4654. }
  4655. //#region 桌面图标拖动逻辑
  4656. /**
  4657. * 桌面排列图标
  4658. *
  4659. * @param {element} 桌面元素
  4660. * @param {object} 上下相距的距离
  4661. * @param {object} 左右相距的距离
  4662. * @return {object} 命名空间
  4663. */
  4664. U.MD.D.iconPostion = function (childs, top, left) {
  4665. var i; //用于循环处理
  4666. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4667. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4668. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4669. for (i = 0; i < childs.length; i++) {
  4670. //如果竖排top超过了范围处理
  4671. if (top + 95 > US.height - 10) {
  4672. //left超过了页面范围处理,则向上重叠打印处理
  4673. if ((left + 180) > US.width) {
  4674. top -= 110;
  4675. left -= 90;
  4676. }
  4677. //没有超过范围,那么left+90添加到下一个竖排打印
  4678. else {
  4679. left += 90;
  4680. top = 15;
  4681. };
  4682. }
  4683. //给图标的位置赋值
  4684. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4685. if (i < childs.length - 1) {
  4686. //页面图标每次向下加95
  4687. top += 95;
  4688. }
  4689. }
  4690. //返回最后调用的图标的位置
  4691. return [top, left];
  4692. }
  4693. /**
  4694. * 桌面排列图标
  4695. *
  4696. * @param {element} 桌面元素
  4697. * @param {object} 上下相距的距离
  4698. * @param {object} 左右相距的距离
  4699. * @return {object} 命名空间
  4700. */
  4701. U.MD.D.iconPostion2 = function (childs, top, left) {
  4702. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4703. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4704. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4705. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4706. for (i = 0; i < childs.length; i++) {
  4707. //如果竖排top超过了范围处理
  4708. if (left + 150 > US.width - 10) {
  4709. //left超过了页面范围处理,则向上重叠打印处理
  4710. if ((top + 180) > US.Height) {
  4711. top -= 150;
  4712. left -= 150;
  4713. }
  4714. //没有超过范围,那么left+90添加到下一个竖排打印
  4715. else {
  4716. top += 150;
  4717. left = ol;
  4718. };
  4719. }
  4720. //给图标的位置赋值
  4721. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4722. if (i < childs.length - 1) {
  4723. //页面图标每次向下加95
  4724. left += 150;
  4725. }
  4726. }
  4727. //返回最后调用的图标的位置
  4728. return [top, left];
  4729. }
  4730. /**
  4731. * 桌面点击事件逻辑
  4732. *
  4733. * @param {element} 桌面元素
  4734. * @param {object} 上下相距的距离
  4735. * @param {object} 左右相距的距离
  4736. * @return {object} 命名空间
  4737. */
  4738. U.MD.D.click = function (el, obj) {
  4739. var _buttonnumber = event.button; //点击的按钮的事件值
  4740. var _userinfo = US.userInfo;
  4741. U.UF.EV.stopBubble(); //阻止向上冒泡
  4742. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4743. if (_buttonnumber < 2) {
  4744. //如果是click事件的处理
  4745. if (event.type == "click") {
  4746. //如果元素在mousemove事件中没有移动则出发click事件
  4747. if (!U.MD.D.I.IsDrag) {
  4748. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4749. U.alert("请先登录您的账号!");
  4750. setTimeout(() => {
  4751. U.MD.U.L.login();
  4752. }, 2000);
  4753. } else {
  4754. //打开应用处理
  4755. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4756. }
  4757. }
  4758. }
  4759. //如果是mouse事件的处理
  4760. else {
  4761. if (US.Config.type == '1') {
  4762. //拖动处理,添加拖动和拖动结束事件
  4763. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4764. }
  4765. }
  4766. U.MD.D.I.IsDrag = false;
  4767. }
  4768. }
  4769. /**
  4770. * 拖动的处理
  4771. *
  4772. */
  4773. U.MD.D.iconMove = function () {
  4774. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4775. U.MD.D.I.IsDrag = true;
  4776. }
  4777. /**
  4778. * 拖动结束后,这里是定位处理,以网状的形式定位
  4779. *
  4780. * @param {element} 拖动的元素
  4781. * @return {object} 命名空间
  4782. */
  4783. U.MD.D.iconUp = function (el) {
  4784. var _top = 15,
  4785. _left = 20,
  4786. _margin,
  4787. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4788. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4789. if (_positioninfo["OT"] > 15) {
  4790. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4791. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4792. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4793. }
  4794. if (_positioninfo["OL"] > 20) {
  4795. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4796. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4797. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4798. }
  4799. //while循环判断么一个重叠的元素
  4800. do {
  4801. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4802. _top = _positioninfo[0] + 95; //得到定位后的top
  4803. _left = _positioninfo[1]; //得到定位后的left
  4804. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4805. }
  4806. /**
  4807. * 判断拖动后图标是否重叠
  4808. *
  4809. * @param {element} 拖动的元素
  4810. * @param {element} 桌面所有的元素
  4811. * @param {array} 拖动元素的位置
  4812. ----------[0] 上 top
  4813. ----------[1] 左 left
  4814. * @return {object} 命名空间
  4815. */
  4816. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4817. //循环所有的图标
  4818. for (var i = 0; i < childs.length; i++) {
  4819. //判断有没有和该图标诶子重叠的元素
  4820. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4821. return childs[i]; //如果有返回
  4822. }
  4823. }
  4824. }
  4825. //#endregion
  4826. //#endregion
  4827. //#region 桌面应用
  4828. /**
  4829. * 打开应用
  4830. *
  4831. * @param {string} 类型
  4832. -----------------Disk 网盘系统
  4833. -----------------PDisk 学习系统网盘
  4834. -----------------Poto 图片
  4835. -----------------Video 视频
  4836. -----------------Music 音乐
  4837. -----------------Word word
  4838. -----------------Excel excel
  4839. -----------------Txt 记事本
  4840. -----------------PB 学习系统
  4841. -----------------Blog 朋友圈系统
  4842. -----------------FTP ftp系统
  4843. -----------------Group 好友群
  4844. -----------------SY 首页系统
  4845. -----------------Set 个人设置
  4846. -----------------XSet 系统设置
  4847. -----------------App 我们所有的app
  4848. -----------------BC c.1473.cn 平台
  4849. -----------------CWeb d.1473.cn 变成平台
  4850. -----------------其他的外联系统 我们统一用iframe打开
  4851. * @param {array} 类型
  4852. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4853. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4854. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4855. 如果第一个参数为其他,则无第二个参数
  4856. * @returns {array}
  4857. */
  4858. window.addEventListener('message', function (e) { // 监听 message 事件
  4859. // alert(e.data.type);
  4860. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4861. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4862. //3是展示全部阶段 2学生 1老师 4专家
  4863. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4864. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4865. //3是展示全部阶段 2学生 1老师 4专家
  4866. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4867. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4868. //3是展示全部阶段 2学生 1老师 4专家
  4869. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4870. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4871. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4872. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4873. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4874. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4875. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4876. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4877. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4878. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4879. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4880. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4881. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4882. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4883. //3是展示全部阶段 2学生 1老师 4专家
  4884. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4885. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4886. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4887. U.MD.D.I.selectUser();
  4888. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4889. var _formel = document.getElementById("study");
  4890. U.UF.F.windowZooming(_formel);
  4891. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4892. var _formel = document.getElementById("studyDetail");
  4893. U.UF.F.windowZooming(_formel);
  4894. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4895. var _formel = document.getElementById("studyDetail");
  4896. U.UF.F.windowZooming(_formel);
  4897. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4898. var _formel = document.getElementById("studentStudy");
  4899. U.UF.F.windowZooming(_formel);
  4900. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4901. // var _formel = document.getElementById("study");
  4902. //如果最大化了,那么就把他缩小
  4903. // if (_formel.ismaximize) {
  4904. // return;
  4905. // }
  4906. // U.UF.F.windowZooming(_formel);
  4907. // U.UF.F.topWindow(_formel);
  4908. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4909. // var _formel = document.getElementById("studyDetail");
  4910. //如果最大化了,那么就把他缩小
  4911. // if (_formel.ismaximize) {
  4912. // return;
  4913. // }
  4914. // U.UF.F.windowZooming(_formel);
  4915. // U.UF.F.topWindow(_formel);
  4916. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4917. // var _formel = document.getElementById("studentStudy");
  4918. // if (_formel.ismaximize) {
  4919. // return;
  4920. // }
  4921. // U.UF.F.windowZooming(_formel);
  4922. // U.UF.F.topWindow(_formel);
  4923. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4924. var _formel = document.getElementById("study");
  4925. // if (_formel.ismaximize) {
  4926. // return;
  4927. // }
  4928. // U.UF.F.windowZooming(_formel);
  4929. U.UF.F.topWindow(_formel);
  4930. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4931. var _formel = document.getElementById("studentIndex");
  4932. U.UF.F.windowZooming(_formel);
  4933. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4934. var _formel = document.getElementById("studyDetailS");
  4935. U.UF.F.windowZooming(_formel);
  4936. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4937. var _formel = document.getElementById("studioIndex");
  4938. U.UF.F.windowZooming(_formel);
  4939. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4940. var _formel = document.getElementById("studyDetailStudio");
  4941. U.UF.F.windowZooming(_formel);
  4942. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4943. var _formel = document.getElementById("studyDetailStudio");
  4944. U.UF.F.windowZooming(_formel);
  4945. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4946. var _formel = document.getElementById("studyDetailNT");
  4947. U.UF.F.windowZooming(_formel);
  4948. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4949. var _formel = document.getElementById("studyDetailS");
  4950. U.UF.F.windowZooming(_formel);
  4951. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4952. var _formel = document.getElementById("studyDetailS");
  4953. U.UF.F.topWindow(_formel);
  4954. } else if (e.data.tools && e.data.tools == "1") {
  4955. // U.MD.D.I.openApplication("whiteboard")
  4956. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4957. } else if (e.data.tools && e.data.tools == "2") {
  4958. U.MD.D.I.openApplication("note")
  4959. } else if (e.data.tools && e.data.tools == "3") {
  4960. // U.MD.D.I.openApplication("mind")
  4961. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4962. } else if (e.data.tools && e.data.tools == "4") {
  4963. U.MD.D.I.openApplication("investigation")
  4964. } else if (e.data.tools && e.data.tools == "6") {
  4965. // U.MD.D.I.openApplication("doc")
  4966. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4967. } else if (e.data.tools && e.data.tools == "7") {
  4968. // U.MD.D.I.openApplication("mindNetwork")
  4969. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4970. } else if (e.data.tools && e.data.tools == "8") {
  4971. U.MD.D.I.openApplication("library")
  4972. } else if (e.data.tools && e.data.tools == "17") {
  4973. U.MD.D.I.openApplication("stuLibrary")
  4974. } else if (e.data.tools && e.data.tools == "18") {
  4975. U.MD.D.I.openApplication("train")
  4976. } else if (e.data.tools && e.data.tools == "21") {
  4977. U.MD.D.I.openApplication("program")
  4978. } else if (e.data.tools && e.data.tools == "22") {
  4979. U.MD.D.I.openApplication("AIprogram2")
  4980. } else if (e.data.tools && e.data.tools == "23") {
  4981. U.MD.D.I.openApplication("Pythonprogram")
  4982. } else if (e.data.tools && e.data.tools == "24") {
  4983. U.MD.D.I.openApplication("AIprogram")
  4984. } else if (e.data.tools && e.data.tools == "25") {
  4985. U.MD.D.I.openApplication("sys")
  4986. } else if (e.data.tools && e.data.tools == "26") {
  4987. // U.MD.D.I.openApplication("courseDesign")
  4988. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4989. } else if (e.data.tools && e.data.tools == "31") {
  4990. U.MD.D.I.openApplication("netWorkPanel")
  4991. } else if (e.data.tools && e.data.tools == "32") {
  4992. U.MD.D.I.openApplication("codeEdit")
  4993. } else if (e.data.tools && e.data.tools == "57") {
  4994. U.MD.D.I.openApplication("CocoPi")
  4995. } else if (e.data.tools && e.data.tools == "63") {
  4996. U.MD.D.I.openApplication("Wood")
  4997. } else if (e.data.tools && e.data.tools == "58") {
  4998. U.MD.D.I.openApplication("car")
  4999. } else if (e.data.tools && e.data.tools == "59") {
  5000. U.MD.D.I.openApplication("lineSearch")
  5001. } else if (e.data.tools && e.data.tools == "60") {
  5002. U.MD.D.I.openApplication("deepLearning")
  5003. } else if (e.data.tools && e.data.tools == "61") {
  5004. U.MD.D.I.openApplication("allHistory")
  5005. } else if (e.data.tools && e.data.tools == "28") {
  5006. U.MD.D.I.openApplication("translation")
  5007. } else if (e.data.tools && e.data.tools == "37") {
  5008. U.MD.D.I.openApplication("mohe")
  5009. } else if (e.data.tools && e.data.tools == "38") {
  5010. U.MD.D.I.openApplication("24game")
  5011. } else if (e.data.tools && e.data.tools == "39") {
  5012. U.MD.D.I.openApplication("GeoGebra")
  5013. } else if (e.data.tools && e.data.tools == "43") {
  5014. U.MD.D.I.openApplication("studentEvaluate")
  5015. } else if (e.data.tools && e.data.tools == "44") {
  5016. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5017. } else if (e.data.tools && e.data.tools == "46") {
  5018. U.MD.D.I.openApplication("project")
  5019. } else if (e.data.tools && e.data.tools == "71") {
  5020. U.MD.D.I.openApplication("aigptCourse")
  5021. } else if (e.data.tools && e.data.tools == "72") {
  5022. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5023. } else if (e.data.tools && e.data.tools == "1s") {
  5024. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5025. } else if (e.data.tools && e.data.tools == "3s") {
  5026. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5027. } else if (e.data.tools && e.data.tools == "6s") {
  5028. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5029. } else if (e.data.tools && e.data.tools == "1studio") {
  5030. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5031. } else if (e.data.tools && e.data.tools == "3studio") {
  5032. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5033. } else if (e.data.tools && e.data.tools == "6studio") {
  5034. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5035. } else if (e.data.tools && e.data.tools == "3y") {
  5036. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5037. } else if (e.data.tools && e.data.tools == "1y") {
  5038. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5039. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5040. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5041. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5042. U.MD.D.I.openApplication("AIAnalyse")
  5043. } else if (e.data.tools && e.data.tools == "1teacher") {
  5044. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5045. } else if (e.data.tools && e.data.tools == "3teacher") {
  5046. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5047. } else if (e.data.tools && e.data.tools == "7teacher") {
  5048. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5049. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5050. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5051. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5052. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5053. } else if (e.data.tools && e.data.tools == "1E") {
  5054. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5055. } else if (e.data.tools && e.data.tools == "3E") {
  5056. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5057. } else if (e.data.tools && e.data.tools == "57y") {
  5058. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5059. } else if (e.data.tools && e.data.tools == "57u") {
  5060. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5061. } else if (e.data.tools && e.data.tools == "57teacher") {
  5062. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5063. } else if (e.data.tools && e.data.tools == "64") {
  5064. U.MD.D.I.openApplication("AIChat")
  5065. } else if (e.data.tools && e.data.tools == "66") {
  5066. U.MD.D.I.openApplication("formulaEdi")
  5067. } else if (e.data.tools && e.data.tools == "67") {
  5068. U.MD.D.I.openApplication("molStr")
  5069. } else if (e.data.tools && e.data.tools == "68") {
  5070. U.MD.D.I.openApplication("timeAxis")
  5071. } else if (e.data.tools && e.data.tools == "openCourse") {
  5072. let _data = {
  5073. typea: e.data.typea || '',
  5074. typeb: e.data.typeb || '',
  5075. typed: e.data.typed || '',
  5076. }
  5077. U.MD.D.I.openInApplication("index", _data)
  5078. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5079. let _data = {
  5080. classid: e.data.classid || '',
  5081. }
  5082. U.MD.D.I.openInApplication("dataClass", _data)
  5083. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5084. let _data = {
  5085. cid: e.data.cid || '',
  5086. gid: e.data.gid || '',
  5087. }
  5088. U.MD.D.I.openInApplication("opencCscl", _data)
  5089. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5090. U.MD.D.I.openApplication("dataBoardTest")
  5091. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5092. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5093. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5094. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5095. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5096. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5097. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5098. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5099. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5100. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5101. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5102. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5103. }else if (e.data.tools && e.data.tools == "loginSz") {
  5104. U.MD.D.I.openInApplication("loginSz")
  5105. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5106. if($('#classroom_observation_board')[0]){
  5107. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5108. }
  5109. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5110. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5111. if($('#classroom_observation_ob_comment')[0]){
  5112. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5113. }
  5114. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5115. }else if (e.data.tools && e.data.tools == "logout"){
  5116. U.MD.U.LO.logoutSystem()
  5117. }else if (e.data.tools && e.data.tools == "getLogin"){
  5118. let _iframe = $('#UI_Login')[0];
  5119. if (_iframe) {
  5120. var userInfo = US.userInfo;
  5121. var type = 2
  5122. if(userInfo && userInfo.userid){
  5123. type = 1
  5124. }
  5125. _contentWindow = _iframe.contentWindow;
  5126. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5127. }
  5128. }
  5129. });
  5130. U.MD.D.I.selectUser = function () {
  5131. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5132. if (res.value[0].length > 0) {
  5133. US.userInfo = res.value[0][0];
  5134. $(".userName")[0].innerHTML = US.userInfo.username;
  5135. }
  5136. }, [], { "type": "GET", "withCredentials": true });
  5137. }
  5138. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5139. var _userinfo = US.userInfo, //登录用户信息
  5140. _userid = US.userInfo.userid, //登录用户id
  5141. _oid = _userinfo.organizeid,
  5142. _type = US.userInfo.type,
  5143. _org = US.userInfo.org,
  5144. _role = US.userInfo.role,
  5145. _classId = US.userInfo.classid;
  5146. if (_type == 4) {
  5147. tType = 4
  5148. }
  5149. switch (str) {
  5150. case "studyDetailNT": //无终端模式
  5151. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5152. setTimeout(() => {
  5153. U.MD.U.L.login();
  5154. }, 2000);
  5155. } else {
  5156. _formdiv = new U.UF.UI.form(
  5157. "课程详情",
  5158. $$("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 }), {
  5159. "id": "studyDetailNT",
  5160. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. }
  5168. case "studyDetail":
  5169. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5170. setTimeout(() => {
  5171. U.MD.U.L.login();
  5172. }, 2000);
  5173. } else {
  5174. _formdiv = new U.UF.UI.form(
  5175. "课程详情",
  5176. $$("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 }), {
  5177. "id": "studyDetail",
  5178. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. _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); } }
  5184. break;
  5185. }
  5186. case "studyDetailTrain":
  5187. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5188. setTimeout(() => {
  5189. U.MD.U.L.login();
  5190. }, 2000);
  5191. } else {
  5192. _formdiv = new U.UF.UI.form(
  5193. "培训详情",
  5194. $$("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 }), {
  5195. "id": "studyDetailTrain",
  5196. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. break;
  5203. }
  5204. case "studyDetailS":
  5205. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5206. setTimeout(() => {
  5207. U.MD.U.L.login();
  5208. }, 2000);
  5209. } else {
  5210. _formdiv = new U.UF.UI.form(
  5211. "项目详情",
  5212. $$("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 }), {
  5213. "id": "studyDetailS",
  5214. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. _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); } }
  5220. break;
  5221. }
  5222. case "studyDetailStudio":
  5223. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5224. setTimeout(() => {
  5225. U.MD.U.L.login();
  5226. }, 2000);
  5227. } else {
  5228. _formdiv = new U.UF.UI.form(
  5229. "工作详情",
  5230. $$("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 }), {
  5231. "id": "studyDetailStudio",
  5232. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. _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); } }
  5238. break;
  5239. }
  5240. case "studyDetailS5":
  5241. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5242. setTimeout(() => {
  5243. U.MD.U.L.login();
  5244. }, 2000);
  5245. } else {
  5246. _formdiv = new U.UF.UI.form(
  5247. "项目详情",
  5248. $$("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 }), {
  5249. "id": "studyDetailS",
  5250. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5251. "onresize": function () { }
  5252. }, {
  5253. closecallback: function () { }
  5254. }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. _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); } }
  5256. break;
  5257. }
  5258. case "studyDetailGM":
  5259. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5260. setTimeout(() => {
  5261. U.MD.U.L.login();
  5262. }, 2000);
  5263. } else {
  5264. _formdiv = new U.UF.UI.form(
  5265. "课程详情",
  5266. $$("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 }), {
  5267. "id": "studyDetail",
  5268. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5269. "onresize": function () { }
  5270. }, {
  5271. closecallback: function () { }
  5272. }, { "style": { "height": "36px" } }).form; //创建窗体
  5273. _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); } }
  5274. break;
  5275. }
  5276. case "hanUrl":
  5277. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5278. setTimeout(() => {
  5279. U.MD.U.L.login();
  5280. }, 2000);
  5281. } else {
  5282. _formdiv = new U.UF.UI.form(
  5283. "汉字宫",
  5284. $$("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" }), {
  5285. "id": "hanUrl",
  5286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5287. "onresize": function () { }
  5288. }, {
  5289. closecallback: function () { }
  5290. }, { "style": { "height": "36px" } }).form; //创建窗体
  5291. _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); } }
  5292. break;
  5293. }
  5294. case "index":
  5295. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5296. setTimeout(() => {
  5297. U.MD.U.L.login();
  5298. }, 2000);
  5299. } else {
  5300. _formdiv = new U.UF.UI.form(
  5301. "课程中心",
  5302. $$("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 }), {
  5303. "id": "study",
  5304. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5305. "onresize": function () { }
  5306. }, {
  5307. closecallback: function () { }
  5308. }, { "style": { "height": "36px" } }).form; //创建窗体
  5309. _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); } }
  5310. break;
  5311. }
  5312. case "dataClass":
  5313. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5314. setTimeout(() => {
  5315. U.MD.U.L.login();
  5316. }, 2000);
  5317. } else {
  5318. _formdiv = new U.UF.UI.form(
  5319. "数据报告",
  5320. $$("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 }), {
  5321. "id": "dataClass",
  5322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5323. "onresize": function () { }
  5324. }, {
  5325. closecallback: function () { }
  5326. }, { "style": { "height": "36px" } }).form; //创建窗体
  5327. _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); } }
  5328. break;
  5329. }
  5330. case "opencCscl":
  5331. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5332. setTimeout(() => {
  5333. U.MD.U.L.login();
  5334. }, 2000);
  5335. } else {
  5336. _formdiv = new U.UF.UI.form(
  5337. "协同建构",
  5338. $$("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 }), {
  5339. "id": "futureClass",
  5340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. _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); } }
  5346. break;
  5347. }
  5348. case "openCourseUpdate":
  5349. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5350. setTimeout(() => {
  5351. U.MD.U.L.login();
  5352. }, 2000);
  5353. } else {
  5354. _formdiv = new U.UF.UI.form(
  5355. "课程管理",
  5356. $$("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 }), {
  5357. "id": "openCourseUpdate",
  5358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5359. "onresize": function () { }
  5360. }, {
  5361. closecallback: function () { }
  5362. }, { "style": { "height": "36px" } }).form; //创建窗体
  5363. break;
  5364. }
  5365. case "openNewCourseUpdate":
  5366. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5367. setTimeout(() => {
  5368. U.MD.U.L.login();
  5369. }, 2000);
  5370. } else {
  5371. _formdiv = new U.UF.UI.form(
  5372. "课程管理",
  5373. $$("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 }), {
  5374. "id": "openCourseUpdate",
  5375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. break;
  5381. }
  5382. case "openCourseEUpdate":
  5383. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5384. setTimeout(() => {
  5385. U.MD.U.L.login();
  5386. }, 2000);
  5387. } else {
  5388. _formdiv = new U.UF.UI.form(
  5389. "课程管理",
  5390. $$("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 }), {
  5391. "id": "openCourseUpdate",
  5392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. break;
  5398. }
  5399. case "openCourseAiUpdate":
  5400. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5401. setTimeout(() => {
  5402. U.MD.U.L.login();
  5403. }, 2000);
  5404. } else {
  5405. _formdiv = new U.UF.UI.form(
  5406. "课程管理",
  5407. $$("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 }), {
  5408. "id": "openCourseUpdate",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. break;
  5415. }
  5416. case "openCourseAiUpdate2":
  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-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5425. "id": "openCourseUpdate",
  5426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //创建窗体
  5431. break;
  5432. }
  5433. case "openCourseNewUpdate":
  5434. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5435. setTimeout(() => {
  5436. U.MD.U.L.login();
  5437. }, 2000);
  5438. } else {
  5439. _formdiv = new U.UF.UI.form(
  5440. "课程管理",
  5441. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5442. "id": "openCourseUpdate",
  5443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //创建窗体
  5448. break;
  5449. }
  5450. case "inviteLoginSz":
  5451. _formdiv = new U.UF.UI.form(
  5452. "随机码登录",
  5453. $$("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 }), {
  5454. "id": "loginSz",
  5455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //创建窗体
  5460. break;
  5461. case "loginSz":
  5462. _formdiv = new U.UF.UI.form(
  5463. "教师登录",
  5464. $$("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" }), {
  5465. "id": "loginSz",
  5466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //创建窗体
  5471. break;
  5472. case "teacher":
  5473. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5474. setTimeout(() => {
  5475. U.MD.U.L.login();
  5476. }, 2000);
  5477. } else {
  5478. _formdiv = new U.UF.UI.form(
  5479. "教师管理",
  5480. $$("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 }), {
  5481. "id": "teacher",
  5482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. break;
  5488. }
  5489. case "dataBoardSZArea":
  5490. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5491. setTimeout(() => {
  5492. U.MD.U.L.login();
  5493. }, 2000);
  5494. } else {
  5495. _formdiv = new U.UF.UI.form(
  5496. "综合数据看板",
  5497. $$("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 }), {
  5498. "id": "dataBoardSZArea",
  5499. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. break;
  5505. }
  5506. case "dataBoardSZCity":
  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-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5515. "id": "dataBoardSZCity",
  5516. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. break;
  5522. }
  5523. case "classroom_observation_board":
  5524. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5525. setTimeout(() => {
  5526. U.MD.U.L.login();
  5527. }, 2000);
  5528. } else {
  5529. _formdiv = new U.UF.UI.form(
  5530. "课堂观察",
  5531. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5532. "id": "classroom_observation_board",
  5533. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. break;
  5539. }
  5540. case "classroom_observation_ob_comment":
  5541. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5542. setTimeout(() => {
  5543. U.MD.U.L.login();
  5544. }, 2000);
  5545. } else {
  5546. _formdiv = new U.UF.UI.form(
  5547. "课堂审核",
  5548. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5549. "id": "classroom_observation_ob_comment",
  5550. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. break;
  5556. }
  5557. case "gptConfig":
  5558. _formdiv = new U.UF.UI.form(
  5559. data.name ? data.name : "应用中心",
  5560. $$("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 }), {
  5561. "id": "gptConfig" + data.id,
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. break;
  5568. }
  5569. }
  5570. U.MD.D.I.openApplication = function (str, obj, info) {
  5571. obj = obj || {};
  5572. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5573. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5574. _userinfo = US.userInfo, //登录用户信息
  5575. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5576. _oid = obj.organizeid || _userinfo.organizeid,
  5577. _type = US.userInfo.type,
  5578. _org = US.userInfo.org,
  5579. _role = US.userInfo.role,
  5580. _classId = US.userInfo.classid,
  5581. _TscreenType = 1
  5582. _screenType = 2,
  5583. _SscreenType = 3;
  5584. let iframeBool = true
  5585. if(U.UF.UI.form.allForm[str]){
  5586. iframeBool = false
  5587. }
  5588. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5589. return;
  5590. }
  5591. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5592. switch (str) {
  5593. case "studnetProject": //好友打开
  5594. _formdiv = new U.UF.UI.form(
  5595. "我的项目",
  5596. $$("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 }), {
  5597. "id": "studnetProject",
  5598. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5599. "onresize": function () { }
  5600. }, {
  5601. closecallback: function () { }
  5602. }, { "style": { "height": "36px" } }).form; //创建窗体
  5603. _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); } }
  5604. break;
  5605. case "studentEvaluate": //好友打开
  5606. _formdiv = new U.UF.UI.form(
  5607. "我的评价",
  5608. $$("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 }), {
  5609. "id": "studentEvaluate",
  5610. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5611. "onresize": function () { }
  5612. }, {
  5613. closecallback: function () { }
  5614. }, { "style": { "height": "36px" } }).form; //创建窗体
  5615. _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); } }
  5616. break;
  5617. case "my":
  5618. _formdiv = new U.UF.UI.form(
  5619. "我的资料",
  5620. $$("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 }), {
  5621. "id": "my",
  5622. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. _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); } }
  5628. break;
  5629. case "program":
  5630. _formdiv = new U.UF.UI.form(
  5631. "编程平台",
  5632. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5633. "id": "program",
  5634. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _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); } }
  5640. break;
  5641. case "library":
  5642. _formdiv = new U.UF.UI.form(
  5643. "素材库",
  5644. $$("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 }), {
  5645. "id": "library",
  5646. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _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); } }
  5652. break;
  5653. case "whiteboard":
  5654. _formdiv = new U.UF.UI.form(
  5655. "电子白板",
  5656. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5657. "id": "whiteboard",
  5658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _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); } }
  5664. break;
  5665. case "investigation":
  5666. _formdiv = new U.UF.UI.form(
  5667. "问卷调查",
  5668. $$("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 }), {
  5669. "id": "investigation",
  5670. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5671. "onresize": function () { }
  5672. }, {
  5673. closecallback: function () { }
  5674. }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. _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); } }
  5676. break;
  5677. case "note":
  5678. _formdiv = new U.UF.UI.form(
  5679. "便签分类",
  5680. $$("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 }), {
  5681. "id": "note",
  5682. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () { }
  5686. }, { "style": { "height": "36px" } }).form; //创建窗体
  5687. _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); } }
  5688. break;
  5689. // case "score":
  5690. // _formdiv = new U.UF.UI.form(
  5691. // "量规评分",
  5692. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5693. // "id": "score",
  5694. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5695. // "onresize": function() {}
  5696. // }, {
  5697. // closecallback: function() {}
  5698. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. // _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); } }
  5700. // break;
  5701. case "mind":
  5702. _formdiv = new U.UF.UI.form(
  5703. "思维导图",
  5704. $$("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"
  5705. "id": "mind",
  5706. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //创建窗体
  5711. _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); } }
  5712. break;
  5713. case "doc":
  5714. // U.MD.D.I.isRoom();
  5715. _formdiv = new U.UF.UI.form(
  5716. "协同文档",
  5717. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5718. "id": "doc",
  5719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5725. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5726. // })
  5727. _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); } }
  5728. break;
  5729. case "studentStudy":
  5730. _formdiv = new U.UF.UI.form(
  5731. "课程中心",
  5732. $$("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
  5733. "id": "studentStudy",
  5734. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5740. break;
  5741. case "train": //好友打开
  5742. _formdiv = new U.UF.UI.form(
  5743. "训练平台",
  5744. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5745. "id": "train",
  5746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5752. break;
  5753. case "mindNetwork": //好友打开
  5754. _formdiv = new U.UF.UI.form(
  5755. "思维网格",
  5756. $$("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 }), {
  5757. "id": "mindNetwork",
  5758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5764. break;
  5765. case "studentClassRoom": //好友打开
  5766. _formdiv = new U.UF.UI.form(
  5767. "实时课堂",
  5768. $$("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 }), {
  5769. "id": "studentClassRoom",
  5770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5776. setTimeout(() => {
  5777. U.UF.F.windowZooming(_formdiv)
  5778. }, 0);
  5779. break;
  5780. }
  5781. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5782. switch (str) {
  5783. case "studnetProject": //好友打开
  5784. _formdiv = new U.UF.UI.form(
  5785. "我的项目",
  5786. $$("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 }), {
  5787. "id": "studnetProject",
  5788. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _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); } }
  5794. break;
  5795. case "studentEvaluate": //好友打开
  5796. _formdiv = new U.UF.UI.form(
  5797. "我的评价",
  5798. $$("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 }), {
  5799. "id": "studentEvaluate",
  5800. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. _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); } }
  5806. break;
  5807. case "my":
  5808. _formdiv = new U.UF.UI.form(
  5809. "我的资料",
  5810. $$("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 }), {
  5811. "id": "my",
  5812. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //创建窗体
  5817. _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); } }
  5818. break;
  5819. case "program":
  5820. _formdiv = new U.UF.UI.form(
  5821. "编程平台",
  5822. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5823. "id": "program",
  5824. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _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); } }
  5830. break;
  5831. case "library":
  5832. _formdiv = new U.UF.UI.form(
  5833. "素材库",
  5834. $$("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 }), {
  5835. "id": "library",
  5836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //创建窗体
  5841. _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); } }
  5842. break;
  5843. case "whiteboard":
  5844. _formdiv = new U.UF.UI.form(
  5845. "电子白板",
  5846. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5847. "id": "whiteboard",
  5848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //创建窗体
  5853. _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); } }
  5854. break;
  5855. case "investigation":
  5856. _formdiv = new U.UF.UI.form(
  5857. "问卷调查",
  5858. $$("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 }), {
  5859. "id": "investigation",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. _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); } }
  5866. break;
  5867. case "note":
  5868. _formdiv = new U.UF.UI.form(
  5869. "便签分类",
  5870. $$("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 }), {
  5871. "id": "note",
  5872. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5873. "onresize": function () { }
  5874. }, {
  5875. closecallback: function () { }
  5876. }, { "style": { "height": "36px" } }).form; //创建窗体
  5877. _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); } }
  5878. break;
  5879. // case "score":
  5880. // _formdiv = new U.UF.UI.form(
  5881. // "量规评分",
  5882. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5883. // "id": "score",
  5884. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5885. // "onresize": function() {}
  5886. // }, {
  5887. // closecallback: function() {}
  5888. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5889. // _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); } }
  5890. // break;
  5891. case "mind":
  5892. _formdiv = new U.UF.UI.form(
  5893. "思维导图",
  5894. $$("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"
  5895. "id": "mind",
  5896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5897. "onresize": function () { }
  5898. }, {
  5899. closecallback: function () { }
  5900. }, { "style": { "height": "36px" } }).form; //创建窗体
  5901. _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); } }
  5902. break;
  5903. case "doc":
  5904. // U.MD.D.I.isRoom();
  5905. _formdiv = new U.UF.UI.form(
  5906. "协同文档",
  5907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5908. "id": "doc",
  5909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5915. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5916. })
  5917. _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); } }
  5918. break;
  5919. case "train": //好友打开
  5920. _formdiv = new U.UF.UI.form(
  5921. "训练平台",
  5922. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5923. "id": "train",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5930. break;
  5931. case "studentStudy":
  5932. _formdiv = new U.UF.UI.form(
  5933. "课程中心",
  5934. $$("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
  5935. "id": "studentStudy",
  5936. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5942. break;
  5943. case "mindNetwork": //好友打开
  5944. _formdiv = new U.UF.UI.form(
  5945. "思维网格",
  5946. $$("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 }), {
  5947. "id": "mindNetwork",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5954. break;
  5955. case "studentClassRoom": //好友打开
  5956. _formdiv = new U.UF.UI.form(
  5957. "实时课堂",
  5958. $$("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 }), {
  5959. "id": "studentClassRoom",
  5960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5966. setTimeout(() => {
  5967. U.UF.F.windowZooming(_formdiv)
  5968. }, 0);
  5969. break;
  5970. }
  5971. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5972. //选择应用处理
  5973. switch (str) {
  5974. case "project": //好友打开
  5975. _formdiv = new U.UF.UI.form(
  5976. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5977. $$("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 }), {
  5978. "id": "project",
  5979. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _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); } }
  5985. break;
  5986. case "student":
  5987. _formdiv = new U.UF.UI.form(
  5988. "学生管理",
  5989. $$("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 }), {
  5990. "id": "student",
  5991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5992. "onresize": function () { }
  5993. }, {
  5994. closecallback: function () { }
  5995. }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. _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); } }
  5997. break;
  5998. case "evaluate":
  5999. _formdiv = new U.UF.UI.form(
  6000. "学生评价",
  6001. $$("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 }), {
  6002. "id": "evaluate",
  6003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _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); } }
  6009. break;
  6010. case "sys":
  6011. _formdiv = new U.UF.UI.form(
  6012. "目标管理",
  6013. $$("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 }), {
  6014. "id": "sys",
  6015. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6016. "onresize": function () { }
  6017. }, {
  6018. closecallback: function () { }
  6019. }, { "style": { "height": "36px" } }).form; //创建窗体
  6020. _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); } }
  6021. break;
  6022. case "courseDesign":
  6023. _formdiv = new U.UF.UI.form(
  6024. "项目设计",
  6025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6026. "id": "courseDesign",
  6027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6028. "onresize": function () { }
  6029. }, {
  6030. closecallback: function () { }
  6031. }, { "style": { "height": "36px" } }).form; //创建窗体
  6032. _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); } }
  6033. break;
  6034. case "program":
  6035. _formdiv = new U.UF.UI.form(
  6036. "编程平台",
  6037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6038. "id": "program",
  6039. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. break;
  6046. case "class":
  6047. _formdiv = new U.UF.UI.form(
  6048. "班级管理",
  6049. $$("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 }), {
  6050. "id": "class",
  6051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6052. "onresize": function () { }
  6053. }, {
  6054. closecallback: function () { }
  6055. }, { "style": { "height": "36px" } }).form; //创建窗体
  6056. _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); } }
  6057. break;
  6058. case "Grade":
  6059. _formdiv = new U.UF.UI.form(
  6060. "年级管理",
  6061. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6062. "id": "Grade",
  6063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6069. break;
  6070. case "teacherOffice":
  6071. _formdiv = new U.UF.UI.form(
  6072. "教研室",
  6073. $$("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 }), {
  6074. "id": "teacherOffice",
  6075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. break;
  6082. case "my":
  6083. _formdiv = new U.UF.UI.form(
  6084. "我的资料",
  6085. $$("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 }), {
  6086. "id": "my",
  6087. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6088. "onresize": function () { }
  6089. }, {
  6090. closecallback: function () { }
  6091. }, { "style": { "height": "36px" } }).form; //创建窗体
  6092. _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); } }
  6093. break;
  6094. case "notice":
  6095. _formdiv = new U.UF.UI.form(
  6096. "通知公告",
  6097. $$("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 }), {
  6098. "id": "notice",
  6099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6100. "onresize": function () { }
  6101. }, {
  6102. closecallback: function () { }
  6103. }, { "style": { "height": "36px" } }).form; //创建窗体
  6104. _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); } }
  6105. break;
  6106. case "library":
  6107. _formdiv = new U.UF.UI.form(
  6108. "素材库",
  6109. $$("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 }), {
  6110. "id": "library",
  6111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6112. "onresize": function () { }
  6113. }, {
  6114. closecallback: function () { }
  6115. }, { "style": { "height": "36px" } }).form; //创建窗体
  6116. _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); } }
  6117. break;
  6118. case "whiteboard":
  6119. _formdiv = new U.UF.UI.form(
  6120. "电子白板",
  6121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6122. "id": "whiteboard",
  6123. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6124. "onresize": function () { }
  6125. }, {
  6126. closecallback: function () { }
  6127. }, { "style": { "height": "36px" } }).form; //创建窗体
  6128. _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); } }
  6129. break;
  6130. case "investigation":
  6131. _formdiv = new U.UF.UI.form(
  6132. "问卷调查",
  6133. $$("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 }), {
  6134. "id": "investigation",
  6135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "note":
  6143. _formdiv = new U.UF.UI.form(
  6144. "便签分类",
  6145. $$("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 }), {
  6146. "id": "note",
  6147. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break;
  6154. // case "score":
  6155. // _formdiv = new U.UF.UI.form(
  6156. // "量规评分",
  6157. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6158. // "id": "score",
  6159. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6160. // "onresize": function() {}
  6161. // }, {
  6162. // closecallback: function() {}
  6163. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. // _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); } }
  6165. // break;
  6166. case "mind":
  6167. _formdiv = new U.UF.UI.form(
  6168. "思维导图",
  6169. $$("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"
  6170. "id": "mind",
  6171. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "doc":
  6179. // U.MD.D.I.isRoom();
  6180. _formdiv = new U.UF.UI.form(
  6181. "协同文档",
  6182. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6183. "id": "doc",
  6184. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //创建窗体
  6189. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6190. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6191. })
  6192. _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); } }
  6193. break;
  6194. case "study":
  6195. _formdiv = new U.UF.UI.form(
  6196. "课程中心",
  6197. $$("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
  6198. "id": "study",
  6199. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6205. break;
  6206. case "mindNetwork": //好友打开
  6207. _formdiv = new U.UF.UI.form(
  6208. "思维网格",
  6209. $$("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 }), {
  6210. "id": "mindNetwork",
  6211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6217. break;
  6218. case "train": //好友打开
  6219. _formdiv = new U.UF.UI.form(
  6220. "训练平台",
  6221. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6222. "id": "mindNetwork",
  6223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6229. break;
  6230. case "teacherClassRoom": //好友打开
  6231. _formdiv = new U.UF.UI.form(
  6232. "实时课堂",
  6233. $$("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 }), {
  6234. "id": "teacherClassRoom",
  6235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6241. setTimeout(() => {
  6242. U.UF.F.windowZooming(_formdiv)
  6243. }, 0);
  6244. break;
  6245. }
  6246. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6247. switch (str) {
  6248. case "project": //好友打开
  6249. _formdiv = new U.UF.UI.form(
  6250. "课程管理",
  6251. $$("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 }), {
  6252. "id": "project",
  6253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6254. "onresize": function () { }
  6255. }, {
  6256. closecallback: function () { }
  6257. }, { "style": { "height": "36px" } }).form; //创建窗体
  6258. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6259. break;
  6260. case "evaluate":
  6261. _formdiv = new U.UF.UI.form(
  6262. "学生评价",
  6263. $$("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 }), {
  6264. "id": "evaluate",
  6265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //创建窗体
  6270. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6271. break;
  6272. case "notice":
  6273. _formdiv = new U.UF.UI.form(
  6274. "通知公告",
  6275. $$("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 }), {
  6276. "id": "notice",
  6277. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6278. "onresize": function () { }
  6279. }, {
  6280. closecallback: function () { }
  6281. }, { "style": { "height": "36px" } }).form; //创建窗体
  6282. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6283. break;
  6284. case "stuLibrary":
  6285. _formdiv = new U.UF.UI.form(
  6286. "学习资料",
  6287. $$("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 }), {
  6288. "id": "stuLibrary",
  6289. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6290. "onresize": function () { }
  6291. }, {
  6292. closecallback: function () { }
  6293. }, { "style": { "height": "36px" } }).form; //创建窗体
  6294. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6295. break;
  6296. case "program":
  6297. _formdiv = new U.UF.UI.form(
  6298. "编程平台",
  6299. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6300. "id": "program",
  6301. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6302. "onresize": function () { }
  6303. }, {
  6304. closecallback: function () { }
  6305. }, { "style": { "height": "36px" } }).form; //创建窗体
  6306. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6307. break;
  6308. case "whiteboard":
  6309. _formdiv = new U.UF.UI.form(
  6310. "电子白板",
  6311. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6312. "id": "whiteboard",
  6313. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6314. "onresize": function () { }
  6315. }, {
  6316. closecallback: function () { }
  6317. }, { "style": { "height": "36px" } }).form; //创建窗体
  6318. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6319. break;
  6320. case "investigation":
  6321. _formdiv = new U.UF.UI.form(
  6322. "问卷调查",
  6323. $$("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 }), {
  6324. "id": "investigation",
  6325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6326. "onresize": function () { }
  6327. }, {
  6328. closecallback: function () { }
  6329. }, { "style": { "height": "36px" } }).form; //创建窗体
  6330. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6331. break;
  6332. case "mind":
  6333. _formdiv = new U.UF.UI.form(
  6334. "思维导图",
  6335. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6336. "id": "mind",
  6337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6338. "onresize": function () { }
  6339. }, {
  6340. closecallback: function () { }
  6341. }, { "style": { "height": "36px" } }).form; //创建窗体
  6342. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6343. break;
  6344. case "doc":
  6345. // U.MD.D.I.isRoom();
  6346. _formdiv = new U.UF.UI.form(
  6347. "协同文档",
  6348. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6349. "id": "doc",
  6350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6351. "onresize": function () { }
  6352. }, {
  6353. closecallback: function () { }
  6354. }, { "style": { "height": "36px" } }).form; //创建窗体
  6355. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6356. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6357. })
  6358. _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); } }
  6359. break;
  6360. case "study":
  6361. _formdiv = new U.UF.UI.form(
  6362. "课程中心",
  6363. $$("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
  6364. "id": "study",
  6365. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //创建窗体
  6370. _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); } }
  6371. break;
  6372. case "mindNetwork": //好友打开
  6373. _formdiv = new U.UF.UI.form(
  6374. "思维网格",
  6375. $$("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 }), {
  6376. "id": "mindNetwork",
  6377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //创建窗体
  6382. _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); } }
  6383. break;
  6384. case "train": //好友打开
  6385. _formdiv = new U.UF.UI.form(
  6386. "训练平台",
  6387. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6388. "id": "train",
  6389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. _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); } }
  6395. break;
  6396. case "sys":
  6397. _formdiv = new U.UF.UI.form(
  6398. "目标管理",
  6399. $$("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 }), {
  6400. "id": "sys",
  6401. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _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); } }
  6407. break;
  6408. case "courseDesign":
  6409. _formdiv = new U.UF.UI.form(
  6410. "项目设计",
  6411. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6412. "id": "courseDesign",
  6413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _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); } }
  6419. break;
  6420. }
  6421. } else if (!_type) {
  6422. switch (str) {
  6423. case "my":
  6424. _formdiv = new U.UF.UI.form(
  6425. "我的资料",
  6426. $$("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 }), {
  6427. "id": "my",
  6428. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, { "style": { "height": "36px" } }).form; //创建窗体
  6433. _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); } }
  6434. break;
  6435. }
  6436. }
  6437. switch (str) {
  6438. // AIprogram2 AI体验 aihub.cocorobo.cn
  6439. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6440. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6441. case "formulaEdi": //公式编辑
  6442. _formdiv = new U.UF.UI.form(
  6443. "公式编辑",
  6444. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6445. "id": "formulaEdi",
  6446. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //创建窗体
  6451. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6452. break;
  6453. case "molStr": //分子结构
  6454. _formdiv = new U.UF.UI.form(
  6455. "分子结构",
  6456. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6457. "id": "molStr",
  6458. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //创建窗体
  6463. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6464. break;
  6465. case "timeAxis": //时间轴
  6466. _formdiv = new U.UF.UI.form(
  6467. "时间轴",
  6468. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6469. "id": "timeAxis",
  6470. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //创建窗体
  6475. _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); } }
  6476. break;
  6477. case "AIprogram2": //AI体验
  6478. _formdiv = new U.UF.UI.form(
  6479. "AI体验",
  6480. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6481. "id": "AIprogram2",
  6482. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //创建窗体
  6487. _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); } }
  6488. break;
  6489. case "Pythonprogram": //python编程
  6490. _formdiv = new U.UF.UI.form(
  6491. "Python编程",
  6492. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6493. "id": "Pythonprogram",
  6494. "style": { "width": "70%", "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/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6500. break;
  6501. case "AIprogram": //ai编程
  6502. _formdiv = new U.UF.UI.form(
  6503. "AI编程平台",
  6504. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6505. "id": "AIprogram",
  6506. "style": { "width": "70%", "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/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6512. break;
  6513. case "CocoPi": //CocoPi
  6514. _formdiv = new U.UF.UI.form(
  6515. "CocoPi",
  6516. $$("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" }), {
  6517. "id": "CocoPi",
  6518. "style": { "width": "70%", "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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6524. break;
  6525. case "Wood": //Wood
  6526. _formdiv = new U.UF.UI.form(
  6527. "海龟编程",
  6528. $$("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/" }), {
  6529. "id": "Wood",
  6530. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6536. break;
  6537. case "car": //模拟驾驶
  6538. _formdiv = new U.UF.UI.form(
  6539. "模拟驾驶",
  6540. $$("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/" }), {
  6541. "id": "car",
  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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6548. break;
  6549. case "lineSearch": //路径搜索
  6550. _formdiv = new U.UF.UI.form(
  6551. "路径搜索",
  6552. $$("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/" }), {
  6553. "id": "lineSearch",
  6554. "style": { "width": "70%", "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/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. break;
  6561. case "deepLearning": //深度学习
  6562. _formdiv = new U.UF.UI.form(
  6563. "深度学习",
  6564. $$("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/#" }), {
  6565. "id": "deepLearning",
  6566. "style": { "width": "70%", "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/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6572. break;
  6573. case "allHistory": //深度学习
  6574. _formdiv = new U.UF.UI.form(
  6575. "全历史",
  6576. $$("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/" }), {
  6577. "id": "allHistory",
  6578. "style": { "width": "70%", "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/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6584. break;
  6585. case "chatPDF": //ai编程
  6586. _formdiv = new U.UF.UI.form(
  6587. "chatPDF",
  6588. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6589. "id": "chatPDF",
  6590. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _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); } }
  6596. break;
  6597. case "resources": //国家教育
  6598. _formdiv = new U.UF.UI.form(
  6599. "国家教育",
  6600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6601. "id": "resources",
  6602. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () { }
  6606. }, { "style": { "height": "36px" } }).form; //创建窗体
  6607. _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); } }
  6608. break;
  6609. case "codeEdit": //源码编辑
  6610. _formdiv = new U.UF.UI.form(
  6611. "源码编辑",
  6612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6613. "id": "codeEdit",
  6614. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //创建窗体
  6619. _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); } }
  6620. break; //
  6621. case "MindMap": //MindMap
  6622. _formdiv = new U.UF.UI.form(
  6623. "MindMap",
  6624. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6625. "id": "MindMap",
  6626. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, { "style": { "height": "36px" } }).form; //创建窗体
  6631. _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); } }
  6632. break;
  6633. case "netWorkPanel": //netWorkPanel
  6634. _formdiv = new U.UF.UI.form(
  6635. "netWorkPanel",
  6636. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6637. "id": "netWorkPanel",
  6638. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () { }
  6642. }, { "style": { "height": "36px" } }).form; //创建窗体
  6643. _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); } }
  6644. break;
  6645. case "GeoGebra": //GeoGebra
  6646. _formdiv = new U.UF.UI.form(
  6647. "GeoGebra",
  6648. $$("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" }), {
  6649. "id": "GeoGebra",
  6650. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6651. "onresize": function () { }
  6652. }, {
  6653. closecallback: function () { }
  6654. }, { "style": { "height": "36px" } }).form; //创建窗体
  6655. _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); } }
  6656. break;
  6657. case "translation": //翻译
  6658. _formdiv = new U.UF.UI.form(
  6659. "翻译",
  6660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6661. "id": "translation",
  6662. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _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); } }
  6668. break;
  6669. case "mohe": //魔盒
  6670. _formdiv = new U.UF.UI.form(
  6671. "魔盒识字",
  6672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6673. "id": "mohe",
  6674. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6675. "onresize": function () { }
  6676. }, {
  6677. closecallback: function () { }
  6678. }, { "style": { "height": "36px" } }).form; //创建窗体
  6679. _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); } }
  6680. break;
  6681. case "24game": //24点
  6682. _formdiv = new U.UF.UI.form(
  6683. "24点",
  6684. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6685. "id": "24game",
  6686. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6687. "onresize": function () { }
  6688. }, {
  6689. closecallback: function () { }
  6690. }, { "style": { "height": "36px" } }).form; //创建窗体
  6691. _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); } }
  6692. break;
  6693. case "case":
  6694. _formdiv = new U.UF.UI.form(
  6695. "课程进展",
  6696. $$("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 }), {
  6697. "id": "case",
  6698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6699. "onresize": function () { }
  6700. }, {
  6701. closecallback: function () { }
  6702. }, { "style": { "height": "36px" } }).form; //创建窗体
  6703. _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); } }
  6704. break;
  6705. case "snf":
  6706. _formdiv = new U.UF.UI.form(
  6707. "赛诺梵",
  6708. $$("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" }), {
  6709. "id": "snf",
  6710. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6711. "onresize": function () { }
  6712. }, {
  6713. closecallback: function () { }
  6714. }, { "style": { "height": "36px" } }).form; //创建窗体
  6715. _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); } }
  6716. break;
  6717. case "hanFamily":
  6718. _formdiv = new U.UF.UI.form(
  6719. "汉字家族",
  6720. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6721. "id": "hanFamily",
  6722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6723. "onresize": function () { }
  6724. }, {
  6725. closecallback: function () { }
  6726. }, { "style": { "height": "36px" } }).form; //创建窗体
  6727. _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); } }
  6728. break;
  6729. case "hanClassics":
  6730. _formdiv = new U.UF.UI.form(
  6731. "国学经典",
  6732. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6733. "id": "hanClassics",
  6734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6735. "onresize": function () { }
  6736. }, {
  6737. closecallback: function () { }
  6738. }, { "style": { "height": "36px" } }).form; //创建窗体
  6739. _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); } }
  6740. break;
  6741. case "hanTraining":
  6742. _formdiv = new U.UF.UI.form(
  6743. "笔画训练",
  6744. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6745. "id": "hanTraining",
  6746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6747. "onresize": function () { }
  6748. }, {
  6749. closecallback: function () { }
  6750. }, { "style": { "height": "36px" } }).form; //创建窗体
  6751. _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); } }
  6752. break;
  6753. case "hanClass":
  6754. _formdiv = new U.UF.UI.form(
  6755. "书法课堂",
  6756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6757. "id": "hanClass",
  6758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //创建窗体
  6763. _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); } }
  6764. break;
  6765. case "han":
  6766. _formdiv = new U.UF.UI.form(
  6767. "汉字宫",
  6768. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6769. "id": "han",
  6770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6771. "onresize": function () { }
  6772. }, {
  6773. closecallback: function () { }
  6774. }, { "style": { "height": "36px" } }).form; //创建窗体
  6775. _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); } }
  6776. break;
  6777. case "projectGM": //课程管理
  6778. _formdiv = new U.UF.UI.form(
  6779. "课程管理",
  6780. $$("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 }), {
  6781. "id": "projectGM",
  6782. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6783. "onresize": function () { }
  6784. }, {
  6785. closecallback: function () { }
  6786. }, { "style": { "height": "36px" } }).form; //创建窗体
  6787. _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); } }
  6788. break;
  6789. case "studyGM": //课程中心
  6790. _formdiv = new U.UF.UI.form(
  6791. "课程中心",
  6792. $$("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
  6793. "id": "study",
  6794. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6795. "onresize": function () { }
  6796. }, {
  6797. closecallback: function () { }
  6798. }, { "style": { "height": "36px" } }).form; //创建窗体
  6799. _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); } }
  6800. break;
  6801. // studentGM
  6802. case "studentGM": //学生管理
  6803. _formdiv = new U.UF.UI.form(
  6804. "学生管理",
  6805. $$("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 }), {
  6806. "id": "studentGM",
  6807. "style": { "width": "90%", "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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6813. break;
  6814. case "evaluateGM": //学生评价
  6815. _formdiv = new U.UF.UI.form(
  6816. "学生评价",
  6817. $$("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 }), {
  6818. "id": "evaluateGM",
  6819. "style": { "width": "90%", "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/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6825. break;
  6826. // classGM
  6827. case "classGM": //班级管理
  6828. _formdiv = new U.UF.UI.form(
  6829. "班级管理",
  6830. $$("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 }), {
  6831. "id": "classGM",
  6832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _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); } }
  6838. break;
  6839. // dataGM
  6840. case "dataGM":
  6841. _formdiv = new U.UF.UI.form(
  6842. "我的资料",
  6843. $$("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 }), {
  6844. "id": "dataGM",
  6845. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, { "style": { "height": "36px" } }).form; //创建窗体
  6850. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6851. break;
  6852. // caseGM
  6853. case "caseGM": //课程进展
  6854. _formdiv = new U.UF.UI.form(
  6855. "课程进展",
  6856. $$("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 }), {
  6857. "id": "caseGM",
  6858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6859. "onresize": function () { }
  6860. }, {
  6861. closecallback: function () { }
  6862. }, { "style": { "height": "36px" } }).form; //创建窗体
  6863. _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); } }
  6864. break;
  6865. // meterialGM
  6866. case "meterialGM": //素材库
  6867. _formdiv = new U.UF.UI.form(
  6868. "素材库",
  6869. $$("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 }), {
  6870. "id": "meterialGM",
  6871. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6872. "onresize": function () { }
  6873. }, {
  6874. closecallback: function () { }
  6875. }, { "style": { "height": "36px" } }).form; //创建窗体
  6876. _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); } }
  6877. break;
  6878. // evaluateSGM
  6879. case "evaluateSGM": //我的评价
  6880. _formdiv = new U.UF.UI.form(
  6881. "我的评价",
  6882. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6883. "id": "evaluateSGM",
  6884. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6885. "onresize": function () { }
  6886. }, {
  6887. closecallback: function () { }
  6888. }, { "style": { "height": "36px" } }).form; //创建窗体
  6889. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6890. break;
  6891. case "jupyter": //jupyter
  6892. _formdiv = new U.UF.UI.form(
  6893. "jupyter",
  6894. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6895. "id": "jupyter",
  6896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6897. "onresize": function () { }
  6898. }, {
  6899. closecallback: function () { }
  6900. }, { "style": { "height": "36px" } }).form; //创建窗体
  6901. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6902. break;
  6903. case "number": //数字实验室
  6904. _formdiv = new U.UF.UI.form(
  6905. "数字实验室",
  6906. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6907. "id": "number",
  6908. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6909. "onresize": function () { }
  6910. }, {
  6911. closecallback: function () { }
  6912. }, { "style": { "height": "36px" } }).form; //创建窗体
  6913. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6914. break;
  6915. case "studentCourse": //项目管理 学生
  6916. _formdiv = new U.UF.UI.form(
  6917. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6918. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6919. "id": "studentCourse",
  6920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6921. "onresize": function () { }
  6922. }, {
  6923. closecallback: function () { }
  6924. }, { "style": { "height": "36px" } }).form; //创建窗体
  6925. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6926. break;
  6927. case "studentCourseS": //项目管理 老师
  6928. _formdiv = new U.UF.UI.form(
  6929. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6930. $$("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 }), {
  6931. "id": "studentCourseS",
  6932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6933. "onresize": function () { }
  6934. }, {
  6935. closecallback: function () { }
  6936. }, { "style": { "height": "36px" } }).form; //创建窗体
  6937. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6938. break;
  6939. case "studentIndex": //项目中心
  6940. _formdiv = new U.UF.UI.form(
  6941. "项目中心",
  6942. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6943. "id": "studentIndex",
  6944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6945. "onresize": function () { }
  6946. }, {
  6947. closecallback: function () { }
  6948. }, { "style": { "height": "36px" } }).form; //创建窗体
  6949. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6950. break;
  6951. case "CaseDesignS":
  6952. _formdiv = new U.UF.UI.form(
  6953. "项目进展",
  6954. $$("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 }), {
  6955. "id": "case",
  6956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6957. "onresize": function () { }
  6958. }, {
  6959. closecallback: function () { }
  6960. }, { "style": { "height": "36px" } }).form; //创建窗体
  6961. _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); } }
  6962. break;
  6963. case "tcStudent": //腾讯学生管理
  6964. _formdiv = new U.UF.UI.form(
  6965. "学生管理",
  6966. $$("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 }), {
  6967. "id": "tcStudent",
  6968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6969. "onresize": function () { }
  6970. }, {
  6971. closecallback: function () { }
  6972. }, { "style": { "height": "36px" } }).form; //创建窗体
  6973. _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); } }
  6974. break;
  6975. case "tcSchool": //腾讯学校管理
  6976. _formdiv = new U.UF.UI.form(
  6977. "学校管理",
  6978. $$("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 }), {
  6979. "id": "tcSchool",
  6980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6981. "onresize": function () { }
  6982. }, {
  6983. closecallback: function () { }
  6984. }, { "style": { "height": "36px" } }).form; //创建窗体
  6985. _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); } }
  6986. break;
  6987. case "tcTeacher": //腾讯学校管理
  6988. _formdiv = new U.UF.UI.form(
  6989. "教师管理",
  6990. $$("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 }), {
  6991. "id": "tcTeacher",
  6992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6993. "onresize": function () { }
  6994. }, {
  6995. closecallback: function () { }
  6996. }, { "style": { "height": "36px" } }).form; //创建窗体
  6997. _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); } }
  6998. break;
  6999. case "teacher":
  7000. _formdiv = new U.UF.UI.form(
  7001. "教师管理",
  7002. $$("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 }), {
  7003. "id": "teacher",
  7004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7005. "onresize": function () { }
  7006. }, {
  7007. closecallback: function () { }
  7008. }, { "style": { "height": "36px" } }).form; //创建窗体
  7009. _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); } }
  7010. break;
  7011. case "tcData": //腾讯我的资料
  7012. _formdiv = new U.UF.UI.form(
  7013. "我的资料",
  7014. $$("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 }), {
  7015. "id": "tcData",
  7016. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7017. "onresize": function () { }
  7018. }, {
  7019. closecallback: function () { }
  7020. }, { "style": { "height": "36px" } }).form; //创建窗体
  7021. _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); } }
  7022. break;
  7023. case "tcNotice": //腾讯消息通知
  7024. _formdiv = new U.UF.UI.form(
  7025. "消息通知",
  7026. $$("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 }), {
  7027. "id": "tcNotice",
  7028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7029. "onresize": function () { }
  7030. }, {
  7031. closecallback: function () { }
  7032. }, { "style": { "height": "36px" } }).form; //创建窗体
  7033. _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); } }
  7034. break;
  7035. case "myReport": //好友打开
  7036. _formdiv = new U.UF.UI.form(
  7037. "我的评价",
  7038. $$("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 }), {
  7039. "id": "myReport",
  7040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7041. "onresize": function () { }
  7042. }, {
  7043. closecallback: function () { }
  7044. }, { "style": { "height": "36px" } }).form; //创建窗体
  7045. _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); } }
  7046. break;
  7047. case "learnAna": //好友打开
  7048. _formdiv = new U.UF.UI.form(
  7049. "学习分析",
  7050. $$("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 }), {
  7051. "id": "learnAna",
  7052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () { }
  7056. }, { "style": { "height": "36px" } }).form; //创建窗体
  7057. _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); } }
  7058. break;
  7059. case "AIChat": //AI共创
  7060. _formdiv = new U.UF.UI.form(
  7061. "AI共创",
  7062. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7063. "id": "AIChat",
  7064. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7065. "onresize": function () { }
  7066. }, {
  7067. istop: true,
  7068. closecallback: function () { $("#aichat_icon").remove(); },
  7069. narrowcallback: function () {
  7070. if (!$("#aichat_icon")[0]) {
  7071. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7072. }
  7073. },
  7074. }, { "style": { "height": "36px" } }).form; //创建窗体
  7075. _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); } }
  7076. break;
  7077. case "ainew": //AI共创
  7078. _formdiv = new U.UF.UI.form(
  7079. "AI协同",
  7080. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7081. "id": "ainew",
  7082. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7083. "onresize": function () { }
  7084. }, {
  7085. closecallback: function () { }
  7086. }, { "style": { "height": "36px" } }).form; //创建窗体
  7087. _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); } }
  7088. break;
  7089. case "gpt4": //gpt4
  7090. _formdiv = new U.UF.UI.form(
  7091. "AI助手",
  7092. $$("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 }), {
  7093. "id": "gpt4",
  7094. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7095. "onresize": function () { }
  7096. }, {
  7097. closecallback: function () { }
  7098. }, { "style": { "height": "36px" } }).form; //创建窗体
  7099. _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); } }
  7100. break;
  7101. case "aigpt": //gpt4
  7102. _formdiv = new U.UF.UI.form(
  7103. "AI助手+",
  7104. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7105. "id": "aigpt",
  7106. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7107. "onresize": function () { }
  7108. }, {
  7109. closecallback: function () {
  7110. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7111. }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _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); } }
  7114. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7115. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7116. })
  7117. break;
  7118. case "aiKnowledge": //aiKnowledge
  7119. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7120. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7121. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7122. }
  7123. _formdiv = new U.UF.UI.form(
  7124. "知识建构",
  7125. $$("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 }), {
  7126. "id": "aiKnowledge",
  7127. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7128. "onresize": function () { }
  7129. }, {
  7130. closecallback: function () { }
  7131. }, { "style": { "height": "36px" } }).form; //创建窗体
  7132. _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); } }
  7133. break;
  7134. case "futureClass": //AI共创
  7135. _formdiv = new U.UF.UI.form(
  7136. "协同建构",
  7137. $$("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
  7138. "id": "synergyCourse",
  7139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7140. "onresize": function () { }
  7141. }, {
  7142. closecallback: function () {
  7143. $("iframe", _formdiv)[0].contentWindow.loginout();
  7144. }
  7145. }, { "style": { "height": "36px" } }).form; //创建窗体
  7146. _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); } }
  7147. break;
  7148. case "aiagent": //ai agent
  7149. _formdiv = new U.UF.UI.form(
  7150. "AI Agent",
  7151. $$("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" }), {
  7152. "id": "AIAgent",
  7153. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, { "style": { "height": "36px" } }).form; //创建窗体
  7158. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7159. break;
  7160. case "dataBoard": //数据看板
  7161. _formdiv = new U.UF.UI.form(
  7162. "数据看板",
  7163. $$("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 }), {
  7164. "id": "dataBoard",
  7165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, { "style": { "height": "36px" } }).form; //创建窗体
  7170. _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); } }
  7171. break;
  7172. case "dataBoardSies": //数据融合
  7173. _formdiv = new U.UF.UI.form(
  7174. "数据融合",
  7175. $$("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 }), {
  7176. "id": "dataBoardSies",
  7177. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7178. "onresize": function () { }
  7179. }, {
  7180. closecallback: function () { }
  7181. }, { "style": { "height": "36px" } }).form; //创建窗体
  7182. _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); } }
  7183. break;
  7184. case "dataBoardNew": //数据看板
  7185. _formdiv = new U.UF.UI.form(
  7186. "综合看板",
  7187. $$("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 }), {
  7188. "id": "dataBoardNew",
  7189. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7190. "onresize": function () { }
  7191. }, {
  7192. closecallback: function () { }
  7193. }, { "style": { "height": "36px" } }).form; //创建窗体
  7194. _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); } }
  7195. break;
  7196. case "dataBoardTest": //数据看板
  7197. _formdiv = new U.UF.UI.form(
  7198. "评测看板",
  7199. $$("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 }), {
  7200. "id": "dataBoardTest",
  7201. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7202. "onresize": function () { }
  7203. }, {
  7204. closecallback: function () { }
  7205. }, { "style": { "height": "36px" } }).form; //创建窗体
  7206. _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); } }
  7207. break;
  7208. case "AIAnalyse": //AI共创
  7209. _formdiv = new U.UF.UI.form(
  7210. "AI分析",
  7211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7212. "id": "AIAnalyse",
  7213. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7214. "onresize": function () { }
  7215. }, {
  7216. closecallback: function () { }
  7217. }, { "style": { "height": "36px" } }).form; //创建窗体
  7218. _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); } }
  7219. break;
  7220. case "studioCourse": //AI共创
  7221. _formdiv = new U.UF.UI.form(
  7222. "工作管理",
  7223. $$("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 }), {
  7224. "id": "studioCourse",
  7225. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7226. "onresize": function () { }
  7227. }, {
  7228. closecallback: function () { }
  7229. }, { "style": { "height": "36px" } }).form; //创建窗体
  7230. _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); } }
  7231. break;
  7232. case "studioIndex": //AI共创
  7233. _formdiv = new U.UF.UI.form(
  7234. "工作中心",
  7235. $$("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 }), {
  7236. "id": "studioIndex",
  7237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7238. "onresize": function () { }
  7239. }, {
  7240. closecallback: function () { }
  7241. }, { "style": { "height": "36px" } }).form; //创建窗体
  7242. _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); } }
  7243. break;
  7244. case "source":
  7245. _formdiv = new U.UF.UI.form(
  7246. "教学资源",
  7247. $$("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 }), {
  7248. "id": "source",
  7249. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7250. "onresize": function () { }
  7251. }, {
  7252. closecallback: function () { }
  7253. }, { "style": { "height": "36px" } }).form; //创建窗体
  7254. _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); } }
  7255. break;
  7256. case "testTeacher":
  7257. _formdiv = new U.UF.UI.form(
  7258. "智能表单",
  7259. $$("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 }), {
  7260. "id": "testTeacher",
  7261. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7262. "onresize": function () { }
  7263. }, {
  7264. closecallback: function () { }
  7265. }, { "style": { "height": "36px" } }).form; //创建窗体
  7266. _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); } }
  7267. break;
  7268. case "testStudent":
  7269. _formdiv = new U.UF.UI.form(
  7270. "教师中心",
  7271. $$("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 }), {
  7272. "id": "testStudent",
  7273. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7274. "onresize": function () { }
  7275. }, {
  7276. closecallback: function () { }
  7277. }, { "style": { "height": "36px" } }).form; //创建窗体
  7278. _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); } }
  7279. break;
  7280. case "testTeacherSies":
  7281. _formdiv = new U.UF.UI.form(
  7282. "教师管理",
  7283. $$("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 }), {
  7284. "id": "testTeacherSies",
  7285. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7286. "onresize": function () { }
  7287. }, {
  7288. closecallback: function () { }
  7289. }, { "style": { "height": "36px" } }).form; //创建窗体
  7290. _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); } }
  7291. break;
  7292. case "testStudentSies":
  7293. _formdiv = new U.UF.UI.form(
  7294. "教师中心",
  7295. $$("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 }), {
  7296. "id": "testStudentSies",
  7297. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7298. "onresize": function () { }
  7299. }, {
  7300. closecallback: function () { }
  7301. }, { "style": { "height": "36px" } }).form; //创建窗体
  7302. _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); } }
  7303. break;
  7304. case "ytpbl": //消息通知
  7305. _formdiv = new U.UF.UI.form(
  7306. "案例征集",
  7307. $$("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 }), {
  7308. "id": "ytpbl",
  7309. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7310. "onresize": function () { }
  7311. }, {
  7312. closecallback: function () { }
  7313. }, { "style": { "height": "36px" } }).form; //创建窗体
  7314. _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); } }
  7315. // 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");
  7316. break;
  7317. case "aiCourseResource": //人工智能窗体
  7318. _formdiv = new U.UF.UI.form(
  7319. false,
  7320. $$("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 }), {
  7321. "id": "aiCourseResource",
  7322. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7323. "onresize": function () { },
  7324. "isdrag": false,
  7325. }, {
  7326. closecallback: function () { }
  7327. }, { "style": { "height": "36px" } }).form; //创建窗体
  7328. _taskbar = ''
  7329. break;
  7330. case "szdjgCocooroboX": //图形化编程
  7331. _formdiv = new U.UF.UI.form(
  7332. "图形化编程",
  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/course_resource/cocoblockly-x/index.html" }), {
  7334. "id": "szdjgCocooroboX",
  7335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7336. "onresize": function () { }
  7337. }, {
  7338. closecallback: function () { }
  7339. }, { "style": { "height": "36px" } }).form; //创建窗体
  7340. _taskbar = ''
  7341. break;
  7342. case "szdjgPython": //python编程
  7343. _formdiv = new U.UF.UI.form(
  7344. "Python编程",
  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://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7346. "id": "szdjgPython",
  7347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7348. "onresize": function () { }
  7349. }, {
  7350. closecallback: function () { }
  7351. }, { "style": { "height": "36px" } }).form; //创建窗体
  7352. _taskbar = ''
  7353. break;
  7354. case "Record":
  7355. _formdiv = new U.UF.UI.form(
  7356. "观察记录",
  7357. $$("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 }), {
  7358. "id": "Record",
  7359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7360. "onresize": function () { }
  7361. }, {
  7362. closecallback: function () { }
  7363. }, { "style": { "height": "36px" } }).form; //创建窗体
  7364. _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); } }
  7365. break;
  7366. case "aigptCourse":
  7367. _formdiv = new U.UF.UI.form(
  7368. "AI智能体",
  7369. $$("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' }), {
  7370. "id": "aigptCourse",
  7371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7372. "onresize": function () { }
  7373. }, {
  7374. closecallback: function () { }
  7375. }, { "style": { "height": "36px" } }).form; //创建窗体
  7376. _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); } }
  7377. break;
  7378. case "classroomObservation":
  7379. _formdiv = new U.UF.UI.form(
  7380. "课堂观察",
  7381. $$("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 }), {
  7382. "id": "classroomObservation",
  7383. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, { "style": { "height": "36px" } }).form; //创建窗体
  7388. _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); } }
  7389. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7390. break;
  7391. case "pblCourse":
  7392. _formdiv = new U.UF.UI.form(
  7393. "学生PBL",
  7394. $$("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 }), {
  7395. "id": "pblCourse",
  7396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7397. "onresize": function () { }
  7398. }, {
  7399. closecallback: function () { }
  7400. }, { "style": { "height": "36px" } }).form; //创建窗体
  7401. _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); } }
  7402. break;
  7403. case "appStore":
  7404. U.MD.D.addOp('','cocoflowOpen','')
  7405. _formdiv = new U.UF.UI.form(
  7406. "CocoFlow",
  7407. $$("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 }), {
  7408. "id": "appStore",
  7409. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7410. "onresize": function () { }
  7411. }, {
  7412. closecallback: function () { }
  7413. }, { "style": { "height": "36px" } }).form; //创建窗体
  7414. _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); } }
  7415. break;
  7416. case "sassPlatform":
  7417. _formdiv = new U.UF.UI.form(
  7418. "Sass通用后台管理",
  7419. $$("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 }), {
  7420. "id": "sassPlatform",
  7421. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7422. "onresize": function () { }
  7423. }, {
  7424. closecallback: function () { }
  7425. }, { "style": { "height": "36px" } }).form; //创建窗体
  7426. _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); } }
  7427. break;
  7428. case "EDU":
  7429. _formdiv = new U.UF.UI.form(
  7430. "EDU",
  7431. $$("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" }), {
  7432. "id": "EDU",
  7433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7434. "onresize": function () { }
  7435. }, {
  7436. closecallback: function () { }
  7437. }, { "style": { "height": "36px" } }).form; //创建窗体
  7438. _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); } }
  7439. break;
  7440. case "knowledge":
  7441. _formdiv = new U.UF.UI.form(
  7442. "知识库",
  7443. $$("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 }), {
  7444. "id": "knowledge",
  7445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7446. "onresize": function () { }
  7447. }, {
  7448. closecallback: function () { }
  7449. }, { "style": { "height": "36px" } }).form; //创建窗体
  7450. _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); } }
  7451. break;
  7452. case "userExamine":
  7453. _formdiv = new U.UF.UI.form(
  7454. "账号申请",
  7455. $$("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" }), {
  7456. "id": "userExamine",
  7457. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7458. "onresize": function () { }
  7459. }, {
  7460. closecallback: function () { }
  7461. }, { "style": { "height": "36px" } }).form; //创建窗体
  7462. break;
  7463. case "cocoflowDeskTop": //cocoflowDeskTop
  7464. _formdiv = new U.UF.UI.form(
  7465. false,
  7466. $$("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 }), {
  7467. "id": "cocoflowDeskTop",
  7468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7469. "onresize": function () { },
  7470. }, {
  7471. closecallback: function () { },
  7472. "isdrag": false,
  7473. }, { "style": { "height": "36px" } }).form; //创建窗体
  7474. _taskbar = ''
  7475. break;
  7476. case "liyuanLogin": //liyuanLogin
  7477. _formdiv = new U.UF.UI.form(
  7478. false,
  7479. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn" }), {
  7480. "id": "liyuanLogin",
  7481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7482. "onresize": function () { },
  7483. }, {
  7484. closecallback: function () { },
  7485. isdrag: false,
  7486. isstretching: false,
  7487. isenlarge: false,
  7488. isnarrow: false
  7489. }, { "style": { "height": "36px" } }).form; //创建窗体
  7490. _taskbar = ''
  7491. break;
  7492. case "updatePaDialog":
  7493. _formdiv = new U.UF.UI.form(
  7494. "密码修改",
  7495. $$("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 }), {
  7496. "id": "updatePaDialog",
  7497. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7498. "onresize": function () { },
  7499. }, {
  7500. closecallback: function () { },
  7501. isclose: false,
  7502. isdrag: false,
  7503. isstretching: false,
  7504. isenlarge: false,
  7505. isnarrow: false
  7506. }, { "style": { "height": "36px" } }).form; //创建窗体
  7507. break;
  7508. }
  7509. //U.MD.D.I.openClick(str);
  7510. //如果有任务栏信息
  7511. if (_taskbar) {
  7512. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7513. }
  7514. if(iframeBool){
  7515. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7516. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7517. // console.log("iframe进入");
  7518. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7519. // };
  7520. setTimeout(() => {
  7521. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7522. }, 2000);
  7523. }
  7524. }
  7525. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7526. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7527. _userinfo = US.userInfo, //登录用户信息
  7528. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7529. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7530. let iframeBool = true;
  7531. let queryString = ''
  7532. if(array && array.length){
  7533. const paramsMap = {
  7534. userid: _userid,
  7535. org: _org,
  7536. oid: _oid,
  7537. type: _type,
  7538. role: _role,
  7539. classId: _classId,
  7540. TscreenType: _TscreenType,
  7541. SscreenType: _SscreenType
  7542. };
  7543. const canshu = array
  7544. .filter(param => paramsMap[param] !== undefined)
  7545. .map(param => `${param}=${paramsMap[param]}`);
  7546. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7547. }
  7548. let _url = url + queryString
  7549. if(U.UF.UI.form.allForm[id]){
  7550. iframeBool = false
  7551. }
  7552. _formdiv = new U.UF.UI.form(
  7553. false,
  7554. $$("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 }),
  7555. {
  7556. "id": id,
  7557. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7558. "onresize": function () { },
  7559. },
  7560. {
  7561. closecallback: function () { },
  7562. isdrag: false,
  7563. isstretching: false,
  7564. isenlarge: false,
  7565. isnarrow: false
  7566. },
  7567. { "style": { "height": "36px" } },
  7568. undefined,
  7569. undefined,
  7570. dom
  7571. ).form
  7572. }
  7573. // U.MD.D.I.openClick = function(str){
  7574. // var click = '';
  7575. // switch(str){
  7576. // case 'friend':
  7577. // click = '我的好友';
  7578. // break;
  7579. // case 'domain':
  7580. // click = '域名管理';
  7581. // break;
  7582. // case 'disk':
  7583. // click = '我的云盘';
  7584. // break;
  7585. // case 'word':
  7586. // click = 'Word';
  7587. // break;
  7588. // case 'excel':
  7589. // click = 'Execl';
  7590. // break;
  7591. // case 'txt':
  7592. // click = '文本文件';
  7593. // break;
  7594. // case 'lookupFriend':
  7595. // click = '查找好友';
  7596. // break;
  7597. // case 'ftp':
  7598. // click = 'FTP';
  7599. // break;
  7600. // case 'group':
  7601. // click = '群组';
  7602. // break;
  7603. // case 'set':
  7604. // click = '我的设置';
  7605. // break;
  7606. // case 'systemSet':
  7607. // click = '系统设置';
  7608. // break;
  7609. // case 'boomYun':
  7610. // click = '互联办公';
  7611. // break;
  7612. // case 'xz':
  7613. // click = '云端下载';
  7614. // break;
  7615. // case 'client':
  7616. // click = '有思浏览器';
  7617. // break;
  7618. // case 'backEndProgramming':
  7619. // click = '在线后台编程';
  7620. // break;
  7621. // case 'frontEndProgramming':
  7622. // click = '在线前端编程';
  7623. // break;
  7624. // default: break;
  7625. // }
  7626. // if(U.MD.D.I.Ip && click){
  7627. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7628. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7629. // })
  7630. // }
  7631. // }
  7632. /**
  7633. *函数作用:ajax简易函数,使用post格式
  7634. *@param url {data} 后台地址
  7635. *@param data {data} 参数json
  7636. *@param fn {data} 回调函数
  7637. *
  7638. */
  7639. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7640. // var xhr = new XMLHttpRequest();
  7641. // xhr.open("GET",url,true);
  7642. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7643. // xhr.onreadystatechange = function(){
  7644. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7645. // fn.call(this,xhr.responseText);
  7646. // }
  7647. // };
  7648. // xhr.send();
  7649. // }
  7650. /*判断是否是内网IP*/
  7651. // U.MD.D.I.isInnerIPFn = function(str){
  7652. // var curPageUrl = str;
  7653. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7654. // curPageUrl =curPageUrl.replace(reg1,'');
  7655. // // console.log('curPageUrl-1 '+curPageUrl);
  7656. // var reg2 = /\:+/g;//替换冒号为一点
  7657. // curPageUrl =curPageUrl.replace(reg2,'.');
  7658. // // console.log('curPageUrl-2 '+curPageUrl);
  7659. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7660. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7661. // if(curPageUrl[2] != '16'){
  7662. // return ipAddress;
  7663. // }else{
  7664. // return false;
  7665. // }
  7666. // }
  7667. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7668. // //compatibility for firefox and chrome
  7669. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7670. // var pc = new myPeerConnection({
  7671. // iceServers: []
  7672. // }),
  7673. // noop = function() {},
  7674. // localIPs = {},
  7675. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7676. // key;
  7677. // function iterateIP(ip) {
  7678. // if (!localIPs[ip]) onNewIP(ip);
  7679. // localIPs[ip] = true;
  7680. // }
  7681. // //create a bogus data channel
  7682. // pc.createDataChannel("");
  7683. // // create offer and set local description
  7684. // pc.createOffer().then(function(sdp) {
  7685. // sdp.sdp.split('\n').forEach(function(line) {
  7686. // if (line.indexOf('candidate') < 0) return;
  7687. // line.match(ipRegex).forEach(iterateIP);
  7688. // });
  7689. // pc.setLocalDescription(sdp, noop, noop);
  7690. // }).catch(function(reason) {
  7691. // // An error occurred, so handle the failure to connect
  7692. // });
  7693. // //sten for candidate events
  7694. // pc.onicecandidate = function(ice) {
  7695. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7696. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7697. // };
  7698. // }
  7699. // U.MD.D.I.getUserIpBool = function(callback){
  7700. // U.MD.D.I.getUserIP(function(ip){
  7701. // alert("Got IP! :" + ip);
  7702. // });
  7703. //}
  7704. //#endregion
  7705. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7706. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7707. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7708. _userinfo = US.userInfo, //登录用户信息
  7709. _userid = US.userInfo.userid //登录用户id
  7710. let _iframe;
  7711. let _cid = cid,
  7712. _stage = stage,
  7713. _task = task,
  7714. _tool = tool;
  7715. var _jie = $$("div", {
  7716. "style": {
  7717. "position": "absolute",
  7718. "bottom": "50px",
  7719. "right": "50px",
  7720. "zIndex": "9999",
  7721. "backgroundColor": "#2268bc",
  7722. "color": "#fff",
  7723. "padding": "12px 20px",
  7724. "cursor": "pointer",
  7725. "borderRadius": "4px",
  7726. },
  7727. "innerHTML": "提交作业"
  7728. })
  7729. let aTool = ''
  7730. let _loading = document.createElement('div')
  7731. _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;"
  7732. // _loading.id = "";
  7733. let _lchild = document.createElement('div')
  7734. let _limg = document.createElement('img')
  7735. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7736. _limg.style = "width: 26px;margin-right: 10px;"
  7737. _lchild.appendChild(_limg)
  7738. let _lspan = document.createElement('span')
  7739. _lspan.innerHTML = "上传中..."
  7740. _lchild.appendChild(_lspan)
  7741. _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%);"
  7742. _loading.appendChild(_lchild)
  7743. var _box = $$('div', {
  7744. "style": {
  7745. "position": "relative",
  7746. "width": "100%",
  7747. "height": "100%",
  7748. },
  7749. })
  7750. _box.appendChild(_loading)
  7751. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7752. switch (str) {
  7753. case "whiteboard":
  7754. aTool = 1;
  7755. _iframe = $$("iframe", {
  7756. "frameborder": "no",
  7757. "border": "0",
  7758. "scrolling ": "no",
  7759. "style": {
  7760. "cssText": "border:0;width:100%;height:100%"
  7761. },
  7762. "src": "https://beta.iwb.cocorobo.cn/"
  7763. })
  7764. _box.appendChild(_iframe);
  7765. _box.appendChild(_jie);
  7766. _formdiv = new U.UF.UI.form(
  7767. "电子白板",
  7768. _box, {
  7769. "id": "whiteboard" + cid + stage + task + tool,
  7770. "style": {
  7771. "width": "90%",
  7772. "height": "90%",
  7773. "overflow": 'hidden'
  7774. },
  7775. "onresize": function () { }
  7776. }, {
  7777. closecallback: function () { }
  7778. }, {
  7779. "style": {
  7780. "height": "36px"
  7781. }
  7782. }).form; //创建窗体
  7783. _taskbar = {
  7784. "id": str + _formdiv.id,
  7785. "style": {
  7786. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7787. },
  7788. "name": "电子白板",
  7789. "forms": _formdiv,
  7790. "click": function () {
  7791. U.MD.D.I.openApplication(str, obj, info);
  7792. }
  7793. }
  7794. break;
  7795. case "mind":
  7796. aTool = 3;
  7797. _iframe = $$("iframe", {
  7798. "frameborder": "no",
  7799. "border": "0",
  7800. "scrolling ": "no",
  7801. "style": {
  7802. "cssText": "border:0;width:100%;height:100%"
  7803. },
  7804. "src": "/kityminder-editor/dist/index.html"
  7805. })
  7806. _box.appendChild(_iframe);
  7807. _box.appendChild(_jie);
  7808. _formdiv = new U.UF.UI.form(
  7809. "思维导图",
  7810. _box, { //"/jsmind/example/demo.html"
  7811. "id": "mind" + cid + stage + task + tool,
  7812. "style": {
  7813. "width": "90%",
  7814. "height": "90%",
  7815. "overflow": 'hidden'
  7816. },
  7817. "onresize": function () { }
  7818. }, {
  7819. closecallback: function () { }
  7820. }, {
  7821. "style": {
  7822. "height": "36px"
  7823. }
  7824. }).form; //创建窗体
  7825. _taskbar = {
  7826. "id": str + _formdiv.id,
  7827. "style": {
  7828. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7829. },
  7830. "name": "思维导图",
  7831. "forms": _formdiv,
  7832. "click": function () {
  7833. U.MD.D.I.openApplication(str, obj, info);
  7834. }
  7835. }
  7836. break;
  7837. case "MindMap":
  7838. aTool = 3;
  7839. _iframe = $$("iframe", {
  7840. "frameborder": "no",
  7841. "border": "0",
  7842. "scrolling ": "no",
  7843. "style": {
  7844. "cssText": "border:0;width:100%;height:100%"
  7845. },
  7846. "src": "//cloud.cocorobo.cn/mind/"
  7847. })
  7848. _box.appendChild(_iframe);
  7849. _box.appendChild(_jie);
  7850. _formdiv = new U.UF.UI.form(
  7851. "思维导图",
  7852. _box, { //"/jsmind/example/demo.html"
  7853. "id": "mind" + cid + stage + task + tool,
  7854. "style": {
  7855. "width": "90%",
  7856. "height": "90%",
  7857. "overflow": 'hidden'
  7858. },
  7859. "onresize": function () { }
  7860. }, {
  7861. closecallback: function () { }
  7862. }, {
  7863. "style": {
  7864. "height": "36px"
  7865. }
  7866. }).form; //创建窗体
  7867. _taskbar = {
  7868. "id": str + _formdiv.id,
  7869. "style": {
  7870. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7871. },
  7872. "name": "思维导图",
  7873. "forms": _formdiv,
  7874. "click": function () {
  7875. U.MD.D.I.openApplication(str, obj, info);
  7876. }
  7877. }
  7878. break;
  7879. case "doc":
  7880. aTool = 6;
  7881. _iframe = $$("iframe", {
  7882. "frameborder": "no",
  7883. "border": "0",
  7884. "scrolling ": "no",
  7885. "style": {
  7886. "cssText": "border:0;width:100%;height:100%"
  7887. },
  7888. "src": "/Office/Word/WordEditArea.htm"
  7889. })
  7890. _box.appendChild(_iframe);
  7891. _box.appendChild(_jie);
  7892. _formdiv = new U.UF.UI.form(
  7893. "协同文档",
  7894. _box, {
  7895. "id": "doc" + cid + stage + task + tool,
  7896. "style": {
  7897. "width": "90%",
  7898. "height": "90%",
  7899. "overflow": 'hidden'
  7900. },
  7901. "onresize": function () { }
  7902. }, {
  7903. closecallback: function () { }
  7904. }, {
  7905. "style": {
  7906. "height": "36px"
  7907. }
  7908. }).form; //创建窗体
  7909. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7910. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7911. })
  7912. _taskbar = {
  7913. "id": str + _formdiv.id,
  7914. "style": {
  7915. "backgroundImage": "url(/img/icon/doc.png)"
  7916. },
  7917. "name": "协同文档",
  7918. "forms": _formdiv,
  7919. "click": function () {
  7920. U.MD.D.I.openApplication(str, obj, info);
  7921. }
  7922. }
  7923. break;
  7924. case "mindNetwork": //好友打开
  7925. aTool = 7;
  7926. _iframe = $$("iframe", {
  7927. "webkitallowfullscreen": "",
  7928. "mozallowfullscreen": "",
  7929. "allowfullscreen": "",
  7930. "frameborder": "no",
  7931. "border": "0",
  7932. "scrolling ": "no",
  7933. "style": {
  7934. "cssText": "border:0; width:100%; height:100%;"
  7935. },
  7936. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7937. })
  7938. _box.appendChild(_iframe);
  7939. _box.appendChild(_jie);
  7940. _formdiv = new U.UF.UI.form(
  7941. "思维网格",
  7942. _box, {
  7943. "id": "mindNetwork" + cid + stage + task + tool,
  7944. "style": {
  7945. "width": "90%",
  7946. "height": "90%",
  7947. "overflow": 'hidden'
  7948. },
  7949. "onresize": function () { }
  7950. }, {
  7951. closecallback: function () { }
  7952. }, {
  7953. "style": {
  7954. "height": "36px"
  7955. }
  7956. }).form; //创建窗体
  7957. _taskbar = {
  7958. "id": str + _formdiv.id,
  7959. "style": {
  7960. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7961. },
  7962. "name": "思维网格",
  7963. "forms": _formdiv,
  7964. "click": function () {
  7965. U.MD.D.I.openApplication(str, obj, info);
  7966. }
  7967. }
  7968. break;
  7969. case "courseDesign":
  7970. _iframe = $$("iframe", {
  7971. "webkitallowfullscreen": "",
  7972. "mozallowfullscreen": "",
  7973. "allowfullscreen": "",
  7974. "frameborder": "no",
  7975. "border": "0",
  7976. "scrolling ": "no",
  7977. "style": {
  7978. "cssText": "border:0; width:100%; height:100%;"
  7979. },
  7980. "src": "/course-design-vue"
  7981. })
  7982. _box.appendChild(_iframe);
  7983. _box.appendChild(_jie);
  7984. _formdiv = new U.UF.UI.form(
  7985. "项目设计",
  7986. _box, {
  7987. "id": "courseDesign" + cid + stage + task + tool,
  7988. "style": {
  7989. "width": "90%",
  7990. "height": "90%",
  7991. "overflow": 'hidden'
  7992. },
  7993. "onresize": function () { }
  7994. }, {
  7995. closecallback: function () { }
  7996. }, {
  7997. "style": {
  7998. "height": "36px"
  7999. }
  8000. }).form; //创建窗体
  8001. _taskbar = {
  8002. "id": str + _formdiv.id,
  8003. "style": {
  8004. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8005. },
  8006. "name": "项目设计",
  8007. "forms": _formdiv,
  8008. "click": function () {
  8009. U.MD.D.I.openApplication(str, obj, info);
  8010. }
  8011. }
  8012. break;
  8013. }
  8014. const script1 = document.createElement("script");
  8015. script1.type = "text/javascript";
  8016. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8017. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8018. const script2 = document.createElement("script");
  8019. script2.type = "text/javascript";
  8020. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8021. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8022. const script3 = document.createElement("script");
  8023. script3.type = "text/javascript";
  8024. script3.charset = "UTF-8";
  8025. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8026. const script4 = document.createElement("script");
  8027. script4.type = "text/javascript";
  8028. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8029. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8030. if (_iframe) {
  8031. if (str == 'doc') {
  8032. _iframe = _formdiv.querySelector('iframe')
  8033. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8034. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8035. _iframe.contentWindow.document.body.appendChild(script1);
  8036. _iframe.contentWindow.document.body.appendChild(script2);
  8037. // _iframe.contentWindow.document.body.appendChild(script3);
  8038. _iframe.contentWindow.document.body.appendChild(script4);
  8039. })
  8040. if (onloadListener) {
  8041. _iframe.contentDocument.location.reload()
  8042. } else {
  8043. _iframe.contentDocument.location.reload()
  8044. }
  8045. } else if (str == 'courseDesign') {
  8046. U.UF.DL.iframeLoad(_iframe, function () {
  8047. // _iframe.contentWindow.U.MD.O.W.load();
  8048. // _iframe.contentWindow.document.body.appendChild(script1);
  8049. _iframe.contentWindow.document.body.appendChild(script2);
  8050. _iframe.contentWindow.document.body.appendChild(script4);
  8051. })
  8052. } else if (str == 'mind') {
  8053. _iframe = _formdiv.querySelector('iframe')
  8054. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8055. //
  8056. _iframe.contentWindow.document.body.appendChild(script1);
  8057. _iframe.contentWindow.document.body.appendChild(script2);
  8058. _iframe.contentWindow.document.body.appendChild(script4);
  8059. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8060. })
  8061. if (onloadListener) {
  8062. _iframe.contentDocument.location.reload()
  8063. } else {
  8064. _iframe.contentDocument.location.reload()
  8065. }
  8066. } else if (str == 'whiteboard') {
  8067. _iframe = _formdiv.querySelector('iframe')
  8068. let onloadListener = _iframe.onload = () => {
  8069. _iframe.contentWindow.document.body.appendChild(script1);
  8070. _iframe.contentWindow.document.body.appendChild(script2);
  8071. _iframe.contentWindow.document.body.appendChild(script4);
  8072. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8073. };
  8074. // if (onloadListener) {
  8075. // try {
  8076. // _iframe.src += "?cocorobo="+new Date().getTime()
  8077. // _iframe.contentWindow.document.location.reload()
  8078. // } catch (error) {
  8079. // }
  8080. // } else {
  8081. // _iframe.contentDocument.location.reload()
  8082. // }
  8083. } else {
  8084. _iframe.onload = () => {
  8085. _iframe.contentWindow.document.body.appendChild(script1);
  8086. _iframe.contentWindow.document.body.appendChild(script2);
  8087. // _iframe.contentWindow.document.body.appendChild(script3);
  8088. _iframe.contentWindow.document.body.appendChild(script4);
  8089. };
  8090. }
  8091. _jie.onclick = async () => {
  8092. let text = ''
  8093. if (aTool == 1) {
  8094. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8095. } else if (aTool == 6) {
  8096. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8097. } else if (aTool == 3) {
  8098. text = await U.MD.D.I.getEditorContent(_iframe);
  8099. }
  8100. _loading.style.display = 'flex'
  8101. console.log(_loading);
  8102. var _ajs = _iframe.contentWindow.document.createElement("script");
  8103. _ajs.type = "text/javascript";
  8104. _ajs.innerHTML =
  8105. // 'console.log(' + _loading + ');\n' +
  8106. 'var _js = document.createElement("script");\n' +
  8107. '_js.type="text/javascript";\n' +
  8108. '_js.charset="UTF-8";\n' +
  8109. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8110. "_js.onload = function(){\n" +
  8111. ' var a = document.getElementsByTagName("img")\n' +
  8112. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8113. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8114. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8115. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8116. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8117. "beforeUpload_shishi(file," +
  8118. "'" +
  8119. _userid +
  8120. "'" +
  8121. ", " +
  8122. "'" +
  8123. _cid +
  8124. "'" +
  8125. ", " +
  8126. "'" +
  8127. _stage +
  8128. "'" +
  8129. ", " +
  8130. "'" +
  8131. _task +
  8132. "'" +
  8133. ", " +
  8134. "'" +
  8135. _tool +
  8136. "'" +
  8137. ", " +
  8138. "'" +
  8139. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8140. "'" +
  8141. ", " +
  8142. "'" +
  8143. aTool +
  8144. "'" +
  8145. ", " +
  8146. "`" +
  8147. text +
  8148. "`" +
  8149. ")\n" +
  8150. " });\n" +
  8151. "}\n" +
  8152. "document.head.appendChild(_js);\n";
  8153. _iframe.contentWindow.document.head.appendChild(_ajs);
  8154. }
  8155. }
  8156. //U.MD.D.I.openClick(str);
  8157. //如果有任务栏信息
  8158. // if (_taskbar) {
  8159. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8160. // }
  8161. }
  8162. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8163. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8164. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8165. _userinfo = US.userInfo, //登录用户信息
  8166. _userid = US.userInfo.userid //登录用户id
  8167. let _iframe;
  8168. let _cid = cid,
  8169. _stage = stage,
  8170. _task = task,
  8171. _tool = tool;
  8172. var _jie = $$("div", {
  8173. "style": {
  8174. "position": "absolute",
  8175. "bottom": "50px",
  8176. "right": "50px",
  8177. "zIndex": "9999",
  8178. "backgroundColor": "#2268bc",
  8179. "color": "#fff",
  8180. "padding": "12px 20px",
  8181. "cursor": "pointer",
  8182. "borderRadius": "4px",
  8183. },
  8184. "innerHTML": "提交作业"
  8185. })
  8186. let aTool = ''
  8187. let _loading = document.createElement('div')
  8188. _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;"
  8189. // _loading.id = "";
  8190. let _lchild = document.createElement('div')
  8191. let _limg = document.createElement('img')
  8192. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8193. _limg.style = "width: 26px;margin-right: 10px;"
  8194. _lchild.appendChild(_limg)
  8195. let _lspan = document.createElement('span')
  8196. _lspan.innerHTML = "上传中..."
  8197. _lchild.appendChild(_lspan)
  8198. _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%);"
  8199. _loading.appendChild(_lchild)
  8200. let _box = $$('div', {
  8201. "style": {
  8202. "position": "relative",
  8203. "width": "100%",
  8204. "height": "100%",
  8205. },
  8206. })
  8207. _box.appendChild(_loading)
  8208. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8209. switch (str) {
  8210. case "whiteboard":
  8211. aTool = 1;
  8212. _iframe = $$("iframe", {
  8213. "frameborder": "no",
  8214. "border": "0",
  8215. "scrolling ": "no",
  8216. "style": {
  8217. "cssText": "border:0;width:100%;height:100%"
  8218. },
  8219. "src": "https://beta.iwb.cocorobo.cn/"
  8220. })
  8221. _box.appendChild(_iframe);
  8222. _box.appendChild(_jie);
  8223. _formdiv = new U.UF.UI.form(
  8224. "电子白板",
  8225. _box, {
  8226. "id": "whiteboard" + cid + stage + task + tool,
  8227. "style": {
  8228. "width": "90%",
  8229. "height": "90%",
  8230. "overflow": 'hidden'
  8231. },
  8232. "onresize": function () { }
  8233. }, {
  8234. closecallback: function () { }
  8235. }, {
  8236. "style": {
  8237. "height": "36px"
  8238. }
  8239. }).form; //创建窗体
  8240. _taskbar = {
  8241. "id": str + _formdiv.id,
  8242. "style": {
  8243. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8244. },
  8245. "name": "电子白板",
  8246. "forms": _formdiv,
  8247. "click": function () {
  8248. U.MD.D.I.openApplication(str, obj, info);
  8249. }
  8250. }
  8251. break;
  8252. case "mind":
  8253. aTool = 3;
  8254. _iframe = $$("iframe", {
  8255. "frameborder": "no",
  8256. "border": "0",
  8257. "scrolling ": "no",
  8258. "style": {
  8259. "cssText": "border:0;width:100%;height:100%"
  8260. },
  8261. "src": "/kityminder-editor/dist/index.html"
  8262. })
  8263. _box.appendChild(_iframe);
  8264. _box.appendChild(_jie);
  8265. _formdiv = new U.UF.UI.form(
  8266. "思维导图",
  8267. _box, { //"/jsmind/example/demo.html"
  8268. "id": "mind" + cid + stage + task + tool,
  8269. "style": {
  8270. "width": "90%",
  8271. "height": "90%",
  8272. "overflow": 'hidden'
  8273. },
  8274. "onresize": function () { }
  8275. }, {
  8276. closecallback: function () { }
  8277. }, {
  8278. "style": {
  8279. "height": "36px"
  8280. }
  8281. }).form; //创建窗体
  8282. _taskbar = {
  8283. "id": str + _formdiv.id,
  8284. "style": {
  8285. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8286. },
  8287. "name": "思维导图",
  8288. "forms": _formdiv,
  8289. "click": function () {
  8290. U.MD.D.I.openApplication(str, obj, info);
  8291. }
  8292. }
  8293. break;
  8294. case "MindMap":
  8295. aTool = 3;
  8296. _iframe = $$("iframe", {
  8297. "frameborder": "no",
  8298. "border": "0",
  8299. "scrolling ": "no",
  8300. "style": {
  8301. "cssText": "border:0;width:100%;height:100%"
  8302. },
  8303. "src": "//cloud.cocorobo.cn/mind/"
  8304. })
  8305. _box.appendChild(_iframe);
  8306. _box.appendChild(_jie);
  8307. _formdiv = new U.UF.UI.form(
  8308. "思维导图",
  8309. _box, { //"/jsmind/example/demo.html"
  8310. "id": "mind" + cid + stage + task + tool,
  8311. "style": {
  8312. "width": "90%",
  8313. "height": "90%",
  8314. "overflow": 'hidden'
  8315. },
  8316. "onresize": function () { }
  8317. }, {
  8318. closecallback: function () { }
  8319. }, {
  8320. "style": {
  8321. "height": "36px"
  8322. }
  8323. }).form; //创建窗体
  8324. _taskbar = {
  8325. "id": str + _formdiv.id,
  8326. "style": {
  8327. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8328. },
  8329. "name": "思维导图",
  8330. "forms": _formdiv,
  8331. "click": function () {
  8332. U.MD.D.I.openApplication(str, obj, info);
  8333. }
  8334. }
  8335. break;
  8336. case "doc":
  8337. aTool = 6;
  8338. _iframe = $$("iframe", {
  8339. "frameborder": "no",
  8340. "border": "0",
  8341. "scrolling ": "no",
  8342. "style": {
  8343. "cssText": "border:0;width:100%;height:100%"
  8344. },
  8345. "src": "/Office/Word/WordEditArea.htm"
  8346. })
  8347. _box.appendChild(_iframe);
  8348. _box.appendChild(_jie);
  8349. _formdiv = new U.UF.UI.form(
  8350. "协同文档",
  8351. _box, {
  8352. "id": "doc" + cid + stage + task + tool,
  8353. "style": {
  8354. "width": "90%",
  8355. "height": "90%",
  8356. "overflow": 'hidden'
  8357. },
  8358. "onresize": function () { }
  8359. }, {
  8360. closecallback: function () { }
  8361. }, {
  8362. "style": {
  8363. "height": "36px"
  8364. }
  8365. }).form; //创建窗体
  8366. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8367. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8368. })
  8369. _taskbar = {
  8370. "id": str + _formdiv.id,
  8371. "style": {
  8372. "backgroundImage": "url(/img/icon/doc.png)"
  8373. },
  8374. "name": "协同文档",
  8375. "forms": _formdiv,
  8376. "click": function () {
  8377. U.MD.D.I.openApplication(str, obj, info);
  8378. }
  8379. }
  8380. break;
  8381. case "mindNetwork": //好友打开
  8382. aTool = 7;
  8383. _iframe = $$("iframe", {
  8384. "webkitallowfullscreen": "",
  8385. "mozallowfullscreen": "",
  8386. "allowfullscreen": "",
  8387. "frameborder": "no",
  8388. "border": "0",
  8389. "scrolling ": "no",
  8390. "style": {
  8391. "cssText": "border:0; width:100%; height:100%;"
  8392. },
  8393. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8394. })
  8395. _box.appendChild(_iframe);
  8396. _box.appendChild(_jie);
  8397. _formdiv = new U.UF.UI.form(
  8398. "思维网格",
  8399. _box, {
  8400. "id": "mindNetwork" + cid + stage + task + tool,
  8401. "style": {
  8402. "width": "90%",
  8403. "height": "90%",
  8404. "overflow": 'hidden'
  8405. },
  8406. "onresize": function () { }
  8407. }, {
  8408. closecallback: function () { }
  8409. }, {
  8410. "style": {
  8411. "height": "36px"
  8412. }
  8413. }).form; //创建窗体
  8414. _taskbar = {
  8415. "id": str + _formdiv.id,
  8416. "style": {
  8417. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8418. },
  8419. "name": "思维网格",
  8420. "forms": _formdiv,
  8421. "click": function () {
  8422. U.MD.D.I.openApplication(str, obj, info);
  8423. }
  8424. }
  8425. break;
  8426. case "courseDesign":
  8427. _iframe = $$("iframe", {
  8428. "webkitallowfullscreen": "",
  8429. "mozallowfullscreen": "",
  8430. "allowfullscreen": "",
  8431. "frameborder": "no",
  8432. "border": "0",
  8433. "scrolling ": "no",
  8434. "style": {
  8435. "cssText": "border:0; width:100%; height:100%;"
  8436. },
  8437. "src": "/course-design-vue"
  8438. })
  8439. _box.appendChild(_iframe);
  8440. _box.appendChild(_jie);
  8441. _formdiv = new U.UF.UI.form(
  8442. "项目设计",
  8443. _box, {
  8444. "id": "courseDesign" + cid + stage + task + tool,
  8445. "style": {
  8446. "width": "90%",
  8447. "height": "90%",
  8448. "overflow": 'hidden'
  8449. },
  8450. "onresize": function () { }
  8451. }, {
  8452. closecallback: function () { }
  8453. }, {
  8454. "style": {
  8455. "height": "36px"
  8456. }
  8457. }).form; //创建窗体
  8458. _taskbar = {
  8459. "id": str + _formdiv.id,
  8460. "style": {
  8461. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8462. },
  8463. "name": "项目设计",
  8464. "forms": _formdiv,
  8465. "click": function () {
  8466. U.MD.D.I.openApplication(str, obj, info);
  8467. }
  8468. }
  8469. break;
  8470. }
  8471. const script1 = document.createElement("script");
  8472. script1.type = "text/javascript";
  8473. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8474. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8475. const script2 = document.createElement("script");
  8476. script2.type = "text/javascript";
  8477. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8478. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8479. const script3 = document.createElement("script");
  8480. script3.type = "text/javascript";
  8481. script3.charset = "UTF-8";
  8482. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8483. const script4 = document.createElement("script");
  8484. script4.type = "text/javascript";
  8485. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8486. script4.src = window.origin + "/js/Common/jietu2E.js";
  8487. if (_iframe) {
  8488. if (str == 'doc') {
  8489. _iframe = _formdiv.querySelector('iframe')
  8490. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8491. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8492. _iframe.contentWindow.document.body.appendChild(script1);
  8493. _iframe.contentWindow.document.body.appendChild(script2);
  8494. // _iframe.contentWindow.document.body.appendChild(script3);
  8495. _iframe.contentWindow.document.body.appendChild(script4);
  8496. })
  8497. if (onloadListener) {
  8498. _iframe.contentDocument.location.reload()
  8499. } else {
  8500. _iframe.contentDocument.location.reload()
  8501. }
  8502. } else if (str == 'courseDesign') {
  8503. U.UF.DL.iframeLoad(_iframe, function () {
  8504. // _iframe.contentWindow.U.MD.O.W.load();
  8505. // _iframe.contentWindow.document.body.appendChild(script1);
  8506. _iframe.contentWindow.document.body.appendChild(script2);
  8507. _iframe.contentWindow.document.body.appendChild(script4);
  8508. })
  8509. } else if (str == 'mind') {
  8510. _iframe = _formdiv.querySelector('iframe')
  8511. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8512. //
  8513. _iframe.contentWindow.document.body.appendChild(script1);
  8514. _iframe.contentWindow.document.body.appendChild(script2);
  8515. _iframe.contentWindow.document.body.appendChild(script4);
  8516. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8517. })
  8518. if (onloadListener) {
  8519. _iframe.contentDocument.location.reload()
  8520. } else {
  8521. _iframe.contentDocument.location.reload()
  8522. }
  8523. } else if (str == 'whiteboard') {
  8524. _iframe = _formdiv.querySelector('iframe')
  8525. let onloadListener = _iframe.onload = () => {
  8526. _iframe.contentWindow.document.body.appendChild(script1);
  8527. _iframe.contentWindow.document.body.appendChild(script2);
  8528. _iframe.contentWindow.document.body.appendChild(script4);
  8529. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8530. };
  8531. // if (onloadListener) {
  8532. // try {
  8533. // _iframe.src += "?cocorobo="+new Date().getTime()
  8534. // _iframe.contentWindow.document.location.reload()
  8535. // } catch (error) {
  8536. // }
  8537. // } else {
  8538. // _iframe.contentDocument.location.reload()
  8539. // }
  8540. } else {
  8541. _iframe.onload = () => {
  8542. _iframe.contentWindow.document.body.appendChild(script1);
  8543. _iframe.contentWindow.document.body.appendChild(script2);
  8544. // _iframe.contentWindow.document.body.appendChild(script3);
  8545. _iframe.contentWindow.document.body.appendChild(script4);
  8546. };
  8547. }
  8548. _jie.onclick = async () => {
  8549. let text = ''
  8550. if (aTool == 1) {
  8551. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8552. } else if (aTool == 6) {
  8553. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8554. } else if (aTool == 3) {
  8555. text = await U.MD.D.I.getEditorContent(_iframe);
  8556. }
  8557. _loading.style.display = 'flex'
  8558. console.log(_loading);
  8559. var _ajs = _iframe.contentWindow.document.createElement("script");
  8560. _ajs.type = "text/javascript";
  8561. _ajs.innerHTML =
  8562. // 'console.log(' + _loading + ');\n' +
  8563. 'var _js = document.createElement("script");\n' +
  8564. '_js.type="text/javascript";\n' +
  8565. '_js.charset="UTF-8";\n' +
  8566. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8567. "_js.onload = function(){\n" +
  8568. ' var a = document.getElementsByTagName("img")\n' +
  8569. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8570. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8571. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8572. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8573. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8574. "beforeUpload_shishi(file," +
  8575. "'" +
  8576. _userid +
  8577. "'" +
  8578. ", " +
  8579. "'" +
  8580. _cid +
  8581. "'" +
  8582. ", " +
  8583. "'" +
  8584. _stage +
  8585. "'" +
  8586. ", " +
  8587. "'" +
  8588. _task +
  8589. "'" +
  8590. ", " +
  8591. "'" +
  8592. _tool +
  8593. "'" +
  8594. ", " +
  8595. "'" +
  8596. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8597. "'" +
  8598. ", " +
  8599. "'" +
  8600. aTool +
  8601. "'" +
  8602. ", " +
  8603. "`" +
  8604. text +
  8605. "`" +
  8606. ")\n" +
  8607. " });\n" +
  8608. "}\n" +
  8609. "document.head.appendChild(_js);\n";
  8610. _iframe.contentWindow.document.head.appendChild(_ajs);
  8611. }
  8612. }
  8613. //U.MD.D.I.openClick(str);
  8614. //如果有任务栏信息
  8615. // if (_taskbar) {
  8616. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8617. // }
  8618. }
  8619. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8620. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8621. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8622. _userid = student.userid, //登录用户id
  8623. _username = student.student //用户名字
  8624. let _iframe;
  8625. let _cid = cid,
  8626. _stage = stage,
  8627. _task = task,
  8628. _tool = tool;
  8629. var _jie = $$("div", {
  8630. "style": {
  8631. "position": "absolute",
  8632. "bottom": "50px",
  8633. "right": "50px",
  8634. "zIndex": "9999",
  8635. "backgroundColor": "#2268bc",
  8636. "color": "#fff",
  8637. "padding": "12px 20px",
  8638. "cursor": "pointer",
  8639. "borderRadius": "4px",
  8640. },
  8641. "innerHTML": "提交作业"
  8642. })
  8643. let aTool = ''
  8644. let _loading = document.createElement('div')
  8645. _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;"
  8646. // _loading.id = "";
  8647. let _lchild = document.createElement('div')
  8648. let _limg = document.createElement('img')
  8649. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8650. _limg.style = "width: 26px;margin-right: 10px;"
  8651. _lchild.appendChild(_limg)
  8652. let _lspan = document.createElement('span')
  8653. _lspan.innerHTML = "上传中..."
  8654. _lchild.appendChild(_lspan)
  8655. _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%);"
  8656. _loading.appendChild(_lchild)
  8657. var _box = $$('div', {
  8658. "style": {
  8659. "position": "relative",
  8660. "width": "100%",
  8661. "height": "100%",
  8662. },
  8663. })
  8664. _box.appendChild(_loading)
  8665. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8666. switch (str) {
  8667. case "whiteboard":
  8668. aTool = 1;
  8669. _iframe = $$("iframe", {
  8670. "frameborder": "no",
  8671. "border": "0",
  8672. "scrolling ": "no",
  8673. "style": {
  8674. "cssText": "border:0;width:100%;height:100%"
  8675. },
  8676. "src": "https://beta.iwb.cocorobo.cn/"
  8677. })
  8678. _box.appendChild(_iframe);
  8679. _box.appendChild(_jie);
  8680. _formdiv = new U.UF.UI.form(
  8681. "电子白板-" + _username,
  8682. _box, {
  8683. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8684. "style": {
  8685. "width": "90%",
  8686. "height": "90%",
  8687. "overflow": 'hidden'
  8688. },
  8689. "onresize": function () { }
  8690. }, {
  8691. closecallback: function () { }
  8692. }, {
  8693. "style": {
  8694. "height": "36px"
  8695. }
  8696. }).form; //创建窗体
  8697. _taskbar = {
  8698. "id": str + _formdiv.id,
  8699. "style": {
  8700. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8701. },
  8702. "name": "电子白板",
  8703. "forms": _formdiv,
  8704. "click": function () {
  8705. U.MD.D.I.openApplication(str, obj, info);
  8706. }
  8707. }
  8708. break;
  8709. case "mind":
  8710. aTool = 3;
  8711. _iframe = $$("iframe", {
  8712. "frameborder": "no",
  8713. "border": "0",
  8714. "scrolling ": "no",
  8715. "style": {
  8716. "cssText": "border:0;width:100%;height:100%"
  8717. },
  8718. "src": "/kityminder-editor/dist/index.html"
  8719. })
  8720. _box.appendChild(_iframe);
  8721. _box.appendChild(_jie);
  8722. _formdiv = new U.UF.UI.form(
  8723. "思维导图-" + _username,
  8724. _box, { //"/jsmind/example/demo.html"
  8725. "id": "mind" + cid + stage + task + tool + _userid,
  8726. "style": {
  8727. "width": "90%",
  8728. "height": "90%",
  8729. "overflow": 'hidden'
  8730. },
  8731. "onresize": function () { }
  8732. }, {
  8733. closecallback: function () { }
  8734. }, {
  8735. "style": {
  8736. "height": "36px"
  8737. }
  8738. }).form; //创建窗体
  8739. _taskbar = {
  8740. "id": str + _formdiv.id,
  8741. "style": {
  8742. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8743. },
  8744. "name": "思维导图",
  8745. "forms": _formdiv,
  8746. "click": function () {
  8747. U.MD.D.I.openApplication(str, obj, info);
  8748. }
  8749. }
  8750. break;
  8751. case "MindMap":
  8752. aTool = 3;
  8753. _iframe = $$("iframe", {
  8754. "frameborder": "no",
  8755. "border": "0",
  8756. "scrolling ": "no",
  8757. "style": {
  8758. "cssText": "border:0;width:100%;height:100%"
  8759. },
  8760. "src": "//cloud.cocorobo.cn/mind/"
  8761. })
  8762. _box.appendChild(_iframe);
  8763. _box.appendChild(_jie);
  8764. _formdiv = new U.UF.UI.form(
  8765. "思维导图-" + _username,
  8766. _box, { //"/jsmind/example/demo.html"
  8767. "id": "mind" + cid + stage + task + tool + _userid,
  8768. "style": {
  8769. "width": "90%",
  8770. "height": "90%",
  8771. "overflow": 'hidden'
  8772. },
  8773. "onresize": function () { }
  8774. }, {
  8775. closecallback: function () { }
  8776. }, {
  8777. "style": {
  8778. "height": "36px"
  8779. }
  8780. }).form; //创建窗体
  8781. _taskbar = {
  8782. "id": str + _formdiv.id,
  8783. "style": {
  8784. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8785. },
  8786. "name": "思维导图",
  8787. "forms": _formdiv,
  8788. "click": function () {
  8789. U.MD.D.I.openApplication(str, obj, info);
  8790. }
  8791. }
  8792. break;
  8793. case "doc":
  8794. aTool = 6;
  8795. _iframe = $$("iframe", {
  8796. "frameborder": "no",
  8797. "border": "0",
  8798. "scrolling ": "no",
  8799. "style": {
  8800. "cssText": "border:0;width:100%;height:100%"
  8801. },
  8802. "src": "/Office/Word/WordEditArea.htm"
  8803. })
  8804. _box.appendChild(_iframe);
  8805. _box.appendChild(_jie);
  8806. _formdiv = new U.UF.UI.form(
  8807. "协同文档-" + _username,
  8808. _box, {
  8809. "id": "doc" + cid + stage + task + tool + _userid,
  8810. "style": {
  8811. "width": "90%",
  8812. "height": "90%",
  8813. "overflow": 'hidden'
  8814. },
  8815. "onresize": function () { }
  8816. }, {
  8817. closecallback: function () { }
  8818. }, {
  8819. "style": {
  8820. "height": "36px"
  8821. }
  8822. }).form; //创建窗体
  8823. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8824. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8825. })
  8826. _taskbar = {
  8827. "id": str + _formdiv.id,
  8828. "style": {
  8829. "backgroundImage": "url(/img/icon/doc.png)"
  8830. },
  8831. "name": "协同文档",
  8832. "forms": _formdiv,
  8833. "click": function () {
  8834. U.MD.D.I.openApplication(str, obj, info);
  8835. }
  8836. }
  8837. break;
  8838. case "mindNetwork": //好友打开
  8839. aTool = 7;
  8840. _iframe = $$("iframe", {
  8841. "webkitallowfullscreen": "",
  8842. "mozallowfullscreen": "",
  8843. "allowfullscreen": "",
  8844. "frameborder": "no",
  8845. "border": "0",
  8846. "scrolling ": "no",
  8847. "style": {
  8848. "cssText": "border:0; width:100%; height:100%;"
  8849. },
  8850. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8851. })
  8852. _box.appendChild(_iframe);
  8853. _box.appendChild(_jie);
  8854. _formdiv = new U.UF.UI.form(
  8855. "思维网格-" + _username,
  8856. _box, {
  8857. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8858. "style": {
  8859. "width": "90%",
  8860. "height": "90%",
  8861. "overflow": 'hidden'
  8862. },
  8863. "onresize": function () { }
  8864. }, {
  8865. closecallback: function () { }
  8866. }, {
  8867. "style": {
  8868. "height": "36px"
  8869. }
  8870. }).form; //创建窗体
  8871. _taskbar = {
  8872. "id": str + _formdiv.id,
  8873. "style": {
  8874. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8875. },
  8876. "name": "思维网格",
  8877. "forms": _formdiv,
  8878. "click": function () {
  8879. U.MD.D.I.openApplication(str, obj, info);
  8880. }
  8881. }
  8882. break;
  8883. case "courseDesign":
  8884. _iframe = $$("iframe", {
  8885. "webkitallowfullscreen": "",
  8886. "mozallowfullscreen": "",
  8887. "allowfullscreen": "",
  8888. "frameborder": "no",
  8889. "border": "0",
  8890. "scrolling ": "no",
  8891. "style": {
  8892. "cssText": "border:0; width:100%; height:100%;"
  8893. },
  8894. "src": "/course-design-vue"
  8895. })
  8896. _box.appendChild(_iframe);
  8897. _box.appendChild(_jie);
  8898. _formdiv = new U.UF.UI.form(
  8899. "项目设计-" + _username,
  8900. _box, {
  8901. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8902. "style": {
  8903. "width": "90%",
  8904. "height": "90%",
  8905. "overflow": 'hidden'
  8906. },
  8907. "onresize": function () { }
  8908. }, {
  8909. closecallback: function () { }
  8910. }, {
  8911. "style": {
  8912. "height": "36px"
  8913. }
  8914. }).form; //创建窗体
  8915. _taskbar = {
  8916. "id": str + _formdiv.id,
  8917. "style": {
  8918. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8919. },
  8920. "name": "项目设计",
  8921. "forms": _formdiv,
  8922. "click": function () {
  8923. U.MD.D.I.openApplication(str, obj, info);
  8924. }
  8925. }
  8926. break;
  8927. }
  8928. const script1 = document.createElement("script");
  8929. script1.type = "text/javascript";
  8930. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8931. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8932. const script2 = document.createElement("script");
  8933. script2.type = "text/javascript";
  8934. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8935. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8936. const script3 = document.createElement("script");
  8937. script3.type = "text/javascript";
  8938. script3.charset = "UTF-8";
  8939. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8940. const script4 = document.createElement("script");
  8941. script4.type = "text/javascript";
  8942. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8943. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8944. if (_iframe) {
  8945. if (str == 'doc') {
  8946. _iframe = _formdiv.querySelector('iframe')
  8947. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8948. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8949. _iframe.contentWindow.document.body.appendChild(script1);
  8950. _iframe.contentWindow.document.body.appendChild(script2);
  8951. // _iframe.contentWindow.document.body.appendChild(script3);
  8952. _iframe.contentWindow.document.body.appendChild(script4);
  8953. })
  8954. if (onloadListener) {
  8955. _iframe.contentDocument.location.reload()
  8956. } else {
  8957. _iframe.contentDocument.location.reload()
  8958. }
  8959. } else if (str == 'courseDesign') {
  8960. U.UF.DL.iframeLoad(_iframe, function () {
  8961. // _iframe.contentWindow.U.MD.O.W.load();
  8962. // _iframe.contentWindow.document.body.appendChild(script1);
  8963. _iframe.contentWindow.document.body.appendChild(script2);
  8964. _iframe.contentWindow.document.body.appendChild(script4);
  8965. })
  8966. } else if (str == 'mind') {
  8967. _iframe = _formdiv.querySelector('iframe')
  8968. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8969. //
  8970. _iframe.contentWindow.document.body.appendChild(script1);
  8971. _iframe.contentWindow.document.body.appendChild(script2);
  8972. _iframe.contentWindow.document.body.appendChild(script4);
  8973. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8974. })
  8975. if (onloadListener) {
  8976. _iframe.contentDocument.location.reload()
  8977. } else {
  8978. _iframe.contentDocument.location.reload()
  8979. }
  8980. } else if (str == 'whiteboard') {
  8981. _iframe = _formdiv.querySelector('iframe')
  8982. let onloadListener = _iframe.onload = () => {
  8983. _iframe.contentWindow.document.body.appendChild(script1);
  8984. _iframe.contentWindow.document.body.appendChild(script2);
  8985. _iframe.contentWindow.document.body.appendChild(script4);
  8986. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8987. };
  8988. // if (onloadListener) {
  8989. // try {
  8990. // _iframe.src += "?cocorobo="+new Date().getTime()
  8991. // _iframe.contentWindow.document.location.reload()
  8992. // } catch (error) {
  8993. // }
  8994. // } else {
  8995. // _iframe.contentDocument.location.reload()
  8996. // }
  8997. } else {
  8998. _iframe.onload = () => {
  8999. _iframe.contentWindow.document.body.appendChild(script1);
  9000. _iframe.contentWindow.document.body.appendChild(script2);
  9001. // _iframe.contentWindow.document.body.appendChild(script3);
  9002. _iframe.contentWindow.document.body.appendChild(script4);
  9003. };
  9004. }
  9005. _jie.onclick = async () => {
  9006. let text = ''
  9007. if (aTool == 1) {
  9008. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9009. } else if (aTool == 6) {
  9010. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9011. } else if (aTool == 3) {
  9012. text = await U.MD.D.I.getEditorContent(_iframe);
  9013. }
  9014. _loading.style.display = 'flex'
  9015. console.log(_loading);
  9016. var _ajs = _iframe.contentWindow.document.createElement("script");
  9017. _ajs.type = "text/javascript";
  9018. _ajs.innerHTML =
  9019. // 'console.log(' + _loading + ');\n' +
  9020. 'var _js = document.createElement("script");\n' +
  9021. '_js.type="text/javascript";\n' +
  9022. '_js.charset="UTF-8";\n' +
  9023. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9024. "_js.onload = function(){\n" +
  9025. ' var a = document.getElementsByTagName("img")\n' +
  9026. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9027. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9028. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9029. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9030. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9031. "beforeUpload_shishi(file," +
  9032. "'" +
  9033. _userid +
  9034. "'" +
  9035. ", " +
  9036. "'" +
  9037. _cid +
  9038. "'" +
  9039. ", " +
  9040. "'" +
  9041. _stage +
  9042. "'" +
  9043. ", " +
  9044. "'" +
  9045. _task +
  9046. "'" +
  9047. ", " +
  9048. "'" +
  9049. _tool +
  9050. "'" +
  9051. ", " +
  9052. "'" +
  9053. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9054. "'" +
  9055. ", " +
  9056. "'" +
  9057. aTool +
  9058. "'" +
  9059. ", " +
  9060. "`" +
  9061. text +
  9062. "`" +
  9063. ")\n" +
  9064. " });\n" +
  9065. "}\n" +
  9066. "document.head.appendChild(_js);\n";
  9067. _iframe.contentWindow.document.head.appendChild(_ajs);
  9068. }
  9069. }
  9070. }
  9071. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9072. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9073. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9074. _userid = student.userid, //登录用户id
  9075. _username = student.student //用户名字
  9076. let _iframe;
  9077. let _cid = cid,
  9078. _stage = stage,
  9079. _task = task,
  9080. _tool = tool;
  9081. var _jie = $$("div", {
  9082. "style": {
  9083. "position": "absolute",
  9084. "bottom": "50px",
  9085. "right": "50px",
  9086. "zIndex": "9999",
  9087. "backgroundColor": "#2268bc",
  9088. "color": "#fff",
  9089. "padding": "12px 20px",
  9090. "cursor": "pointer",
  9091. "borderRadius": "4px",
  9092. },
  9093. "innerHTML": "提交作业"
  9094. })
  9095. let aTool = ''
  9096. let _loading = document.createElement('div')
  9097. _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;"
  9098. // _loading.id = "";
  9099. let _lchild = document.createElement('div')
  9100. let _limg = document.createElement('img')
  9101. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9102. _limg.style = "width: 26px;margin-right: 10px;"
  9103. _lchild.appendChild(_limg)
  9104. let _lspan = document.createElement('span')
  9105. _lspan.innerHTML = "上传中..."
  9106. _lchild.appendChild(_lspan)
  9107. _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%);"
  9108. _loading.appendChild(_lchild)
  9109. var _box = $$('div', {
  9110. "style": {
  9111. "position": "relative",
  9112. "width": "100%",
  9113. "height": "100%",
  9114. },
  9115. })
  9116. _box.appendChild(_loading)
  9117. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9118. switch (str) {
  9119. case "whiteboard":
  9120. aTool = 1;
  9121. _iframe = $$("iframe", {
  9122. "frameborder": "no",
  9123. "border": "0",
  9124. "scrolling ": "no",
  9125. "style": {
  9126. "cssText": "border:0;width:100%;height:100%"
  9127. },
  9128. "src": "https://beta.iwb.cocorobo.cn/"
  9129. })
  9130. _box.appendChild(_iframe);
  9131. _box.appendChild(_jie);
  9132. _formdiv = new U.UF.UI.form(
  9133. "电子白板-" + _username,
  9134. _box, {
  9135. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9136. "style": {
  9137. "width": "90%",
  9138. "height": "90%",
  9139. "overflow": 'hidden'
  9140. },
  9141. "onresize": function () { }
  9142. }, {
  9143. closecallback: function () { }
  9144. }, {
  9145. "style": {
  9146. "height": "36px"
  9147. }
  9148. }).form; //创建窗体
  9149. _taskbar = {
  9150. "id": str + _formdiv.id,
  9151. "style": {
  9152. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9153. },
  9154. "name": "电子白板",
  9155. "forms": _formdiv,
  9156. "click": function () {
  9157. U.MD.D.I.openApplication(str, obj, info);
  9158. }
  9159. }
  9160. break;
  9161. case "mind":
  9162. aTool = 3;
  9163. _iframe = $$("iframe", {
  9164. "frameborder": "no",
  9165. "border": "0",
  9166. "scrolling ": "no",
  9167. "style": {
  9168. "cssText": "border:0;width:100%;height:100%"
  9169. },
  9170. "src": "/kityminder-editor/dist/index.html"
  9171. })
  9172. _box.appendChild(_iframe);
  9173. _box.appendChild(_jie);
  9174. _formdiv = new U.UF.UI.form(
  9175. "思维导图-" + _username,
  9176. _box, { //"/jsmind/example/demo.html"
  9177. "id": "mind" + cid + stage + task + tool + _userid,
  9178. "style": {
  9179. "width": "90%",
  9180. "height": "90%",
  9181. "overflow": 'hidden'
  9182. },
  9183. "onresize": function () { }
  9184. }, {
  9185. closecallback: function () { }
  9186. }, {
  9187. "style": {
  9188. "height": "36px"
  9189. }
  9190. }).form; //创建窗体
  9191. _taskbar = {
  9192. "id": str + _formdiv.id,
  9193. "style": {
  9194. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9195. },
  9196. "name": "思维导图",
  9197. "forms": _formdiv,
  9198. "click": function () {
  9199. U.MD.D.I.openApplication(str, obj, info);
  9200. }
  9201. }
  9202. break;
  9203. case "MindMap":
  9204. aTool = 3;
  9205. _iframe = $$("iframe", {
  9206. "frameborder": "no",
  9207. "border": "0",
  9208. "scrolling ": "no",
  9209. "style": {
  9210. "cssText": "border:0;width:100%;height:100%"
  9211. },
  9212. "src": "//cloud.cocorobo.cn/mind/"
  9213. })
  9214. _box.appendChild(_iframe);
  9215. _box.appendChild(_jie);
  9216. _formdiv = new U.UF.UI.form(
  9217. "思维导图-" + _username,
  9218. _box, { //"/jsmind/example/demo.html"
  9219. "id": "mind" + cid + stage + task + tool + _userid,
  9220. "style": {
  9221. "width": "90%",
  9222. "height": "90%",
  9223. "overflow": 'hidden'
  9224. },
  9225. "onresize": function () { }
  9226. }, {
  9227. closecallback: function () { }
  9228. }, {
  9229. "style": {
  9230. "height": "36px"
  9231. }
  9232. }).form; //创建窗体
  9233. _taskbar = {
  9234. "id": str + _formdiv.id,
  9235. "style": {
  9236. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9237. },
  9238. "name": "思维导图",
  9239. "forms": _formdiv,
  9240. "click": function () {
  9241. U.MD.D.I.openApplication(str, obj, info);
  9242. }
  9243. }
  9244. break;
  9245. case "doc":
  9246. aTool = 6;
  9247. _iframe = $$("iframe", {
  9248. "frameborder": "no",
  9249. "border": "0",
  9250. "scrolling ": "no",
  9251. "style": {
  9252. "cssText": "border:0;width:100%;height:100%"
  9253. },
  9254. "src": "/Office/Word/WordEditArea.htm"
  9255. })
  9256. _box.appendChild(_iframe);
  9257. _box.appendChild(_jie);
  9258. _formdiv = new U.UF.UI.form(
  9259. "协同文档-" + _username,
  9260. _box, {
  9261. "id": "doc" + cid + stage + task + tool + _userid,
  9262. "style": {
  9263. "width": "90%",
  9264. "height": "90%",
  9265. "overflow": 'hidden'
  9266. },
  9267. "onresize": function () { }
  9268. }, {
  9269. closecallback: function () { }
  9270. }, {
  9271. "style": {
  9272. "height": "36px"
  9273. }
  9274. }).form; //创建窗体
  9275. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9276. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9277. })
  9278. _taskbar = {
  9279. "id": str + _formdiv.id,
  9280. "style": {
  9281. "backgroundImage": "url(/img/icon/doc.png)"
  9282. },
  9283. "name": "协同文档",
  9284. "forms": _formdiv,
  9285. "click": function () {
  9286. U.MD.D.I.openApplication(str, obj, info);
  9287. }
  9288. }
  9289. break;
  9290. case "mindNetwork": //好友打开
  9291. aTool = 7;
  9292. _iframe = $$("iframe", {
  9293. "webkitallowfullscreen": "",
  9294. "mozallowfullscreen": "",
  9295. "allowfullscreen": "",
  9296. "frameborder": "no",
  9297. "border": "0",
  9298. "scrolling ": "no",
  9299. "style": {
  9300. "cssText": "border:0; width:100%; height:100%;"
  9301. },
  9302. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9303. })
  9304. _box.appendChild(_iframe);
  9305. _box.appendChild(_jie);
  9306. _formdiv = new U.UF.UI.form(
  9307. "思维网格-" + _username,
  9308. _box, {
  9309. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9310. "style": {
  9311. "width": "90%",
  9312. "height": "90%",
  9313. "overflow": 'hidden'
  9314. },
  9315. "onresize": function () { }
  9316. }, {
  9317. closecallback: function () { }
  9318. }, {
  9319. "style": {
  9320. "height": "36px"
  9321. }
  9322. }).form; //创建窗体
  9323. _taskbar = {
  9324. "id": str + _formdiv.id,
  9325. "style": {
  9326. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9327. },
  9328. "name": "思维网格",
  9329. "forms": _formdiv,
  9330. "click": function () {
  9331. U.MD.D.I.openApplication(str, obj, info);
  9332. }
  9333. }
  9334. break;
  9335. case "courseDesign":
  9336. _iframe = $$("iframe", {
  9337. "webkitallowfullscreen": "",
  9338. "mozallowfullscreen": "",
  9339. "allowfullscreen": "",
  9340. "frameborder": "no",
  9341. "border": "0",
  9342. "scrolling ": "no",
  9343. "style": {
  9344. "cssText": "border:0; width:100%; height:100%;"
  9345. },
  9346. "src": "/course-design-vue"
  9347. })
  9348. _box.appendChild(_iframe);
  9349. _box.appendChild(_jie);
  9350. _formdiv = new U.UF.UI.form(
  9351. "项目设计-" + _username,
  9352. _box, {
  9353. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9354. "style": {
  9355. "width": "90%",
  9356. "height": "90%",
  9357. "overflow": 'hidden'
  9358. },
  9359. "onresize": function () { }
  9360. }, {
  9361. closecallback: function () { }
  9362. }, {
  9363. "style": {
  9364. "height": "36px"
  9365. }
  9366. }).form; //创建窗体
  9367. _taskbar = {
  9368. "id": str + _formdiv.id,
  9369. "style": {
  9370. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9371. },
  9372. "name": "项目设计",
  9373. "forms": _formdiv,
  9374. "click": function () {
  9375. U.MD.D.I.openApplication(str, obj, info);
  9376. }
  9377. }
  9378. break;
  9379. }
  9380. const script1 = document.createElement("script");
  9381. script1.type = "text/javascript";
  9382. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9383. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9384. const script2 = document.createElement("script");
  9385. script2.type = "text/javascript";
  9386. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9387. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9388. const script3 = document.createElement("script");
  9389. script3.type = "text/javascript";
  9390. script3.charset = "UTF-8";
  9391. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9392. const script4 = document.createElement("script");
  9393. script4.type = "text/javascript";
  9394. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9395. script4.src = window.origin + "/js/Common/jietu2E.js";
  9396. if (_iframe) {
  9397. if (str == 'doc') {
  9398. _iframe = _formdiv.querySelector('iframe')
  9399. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9400. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9401. _iframe.contentWindow.document.body.appendChild(script1);
  9402. _iframe.contentWindow.document.body.appendChild(script2);
  9403. // _iframe.contentWindow.document.body.appendChild(script3);
  9404. _iframe.contentWindow.document.body.appendChild(script4);
  9405. })
  9406. if (onloadListener) {
  9407. _iframe.contentDocument.location.reload()
  9408. } else {
  9409. _iframe.contentDocument.location.reload()
  9410. }
  9411. } else if (str == 'courseDesign') {
  9412. U.UF.DL.iframeLoad(_iframe, function () {
  9413. // _iframe.contentWindow.U.MD.O.W.load();
  9414. // _iframe.contentWindow.document.body.appendChild(script1);
  9415. _iframe.contentWindow.document.body.appendChild(script2);
  9416. _iframe.contentWindow.document.body.appendChild(script4);
  9417. })
  9418. } else if (str == 'mind') {
  9419. _iframe = _formdiv.querySelector('iframe')
  9420. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9421. //
  9422. _iframe.contentWindow.document.body.appendChild(script1);
  9423. _iframe.contentWindow.document.body.appendChild(script2);
  9424. _iframe.contentWindow.document.body.appendChild(script4);
  9425. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9426. })
  9427. if (onloadListener) {
  9428. _iframe.contentDocument.location.reload()
  9429. } else {
  9430. _iframe.contentDocument.location.reload()
  9431. }
  9432. } else if (str == 'whiteboard') {
  9433. _iframe = _formdiv.querySelector('iframe')
  9434. let onloadListener = _iframe.onload = () => {
  9435. _iframe.contentWindow.document.body.appendChild(script1);
  9436. _iframe.contentWindow.document.body.appendChild(script2);
  9437. _iframe.contentWindow.document.body.appendChild(script4);
  9438. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9439. };
  9440. // if (onloadListener) {
  9441. // try {
  9442. // _iframe.src += "?cocorobo="+new Date().getTime()
  9443. // _iframe.contentWindow.document.location.reload()
  9444. // } catch (error) {
  9445. // }
  9446. // } else {
  9447. // _iframe.contentDocument.location.reload()
  9448. // }
  9449. } else {
  9450. _iframe.onload = () => {
  9451. _iframe.contentWindow.document.body.appendChild(script1);
  9452. _iframe.contentWindow.document.body.appendChild(script2);
  9453. // _iframe.contentWindow.document.body.appendChild(script3);
  9454. _iframe.contentWindow.document.body.appendChild(script4);
  9455. };
  9456. }
  9457. _jie.onclick = async () => {
  9458. let text = ''
  9459. if (aTool == 1) {
  9460. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9461. } else if (aTool == 6) {
  9462. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9463. } else if (aTool == 3) {
  9464. text = await U.MD.D.I.getEditorContent(_iframe);
  9465. }
  9466. _loading.style.display = 'flex'
  9467. console.log(_loading);
  9468. var _ajs = _iframe.contentWindow.document.createElement("script");
  9469. _ajs.type = "text/javascript";
  9470. _ajs.innerHTML =
  9471. // 'console.log(' + _loading + ');\n' +
  9472. 'var _js = document.createElement("script");\n' +
  9473. '_js.type="text/javascript";\n' +
  9474. '_js.charset="UTF-8";\n' +
  9475. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9476. "_js.onload = function(){\n" +
  9477. ' var a = document.getElementsByTagName("img")\n' +
  9478. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9479. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9480. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9481. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9482. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9483. "beforeUpload_shishi(file," +
  9484. "'" +
  9485. _userid +
  9486. "'" +
  9487. ", " +
  9488. "'" +
  9489. _cid +
  9490. "'" +
  9491. ", " +
  9492. "'" +
  9493. _stage +
  9494. "'" +
  9495. ", " +
  9496. "'" +
  9497. _task +
  9498. "'" +
  9499. ", " +
  9500. "'" +
  9501. _tool +
  9502. "'" +
  9503. ", " +
  9504. "'" +
  9505. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9506. "'" +
  9507. ", " +
  9508. "'" +
  9509. aTool +
  9510. "'" +
  9511. ", " +
  9512. "`" +
  9513. text +
  9514. "`" +
  9515. ")\n" +
  9516. " });\n" +
  9517. "}\n" +
  9518. "document.head.appendChild(_js);\n";
  9519. _iframe.contentWindow.document.head.appendChild(_ajs);
  9520. }
  9521. }
  9522. }
  9523. U.MD.D.I.getEditorContent = function (iframe) {
  9524. return new Promise((resolve, reject) => {
  9525. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9526. console.log(content);
  9527. resolve(content)
  9528. });
  9529. });
  9530. }
  9531. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9532. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9533. // if (res.value[0].length > 0) {
  9534. // // resolve(res.value[0][0].text);
  9535. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9536. // $(fileInput).val('');
  9537. // });
  9538. // }
  9539. // }, [], { "type": "GET", "withCredentials": true });
  9540. var xmlhttp;
  9541. var Mac, Sn, DeviceId
  9542. if (window.XMLHttpRequest) {
  9543. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9544. xmlhttp = new XMLHttpRequest();
  9545. } else {
  9546. // IE6, IE5 浏览器执行代码
  9547. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9548. }
  9549. xmlhttp.onreadystatechange = function () {
  9550. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9551. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9552. // resolve(res.value[0][0].text);
  9553. if (type == '2') {
  9554. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9555. } else if (type == '3') {
  9556. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9557. }
  9558. } else {
  9559. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9560. }
  9561. }
  9562. }
  9563. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9564. xmlhttp.send();
  9565. }
  9566. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9567. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9568. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9569. _userinfo = US.userInfo, //登录用户信息
  9570. _userid = US.userInfo.userid //登录用户id
  9571. let _iframe;
  9572. let _cid = cid,
  9573. _stage = stage,
  9574. _task = task,
  9575. _tool = tool;
  9576. var _jie = $$("div", {
  9577. "style": {
  9578. "position": "absolute",
  9579. "bottom": "50px",
  9580. "right": "50px",
  9581. "zIndex": "9999",
  9582. "backgroundColor": "#2268bc",
  9583. "color": "#fff",
  9584. "padding": "12px 20px",
  9585. "cursor": "pointer",
  9586. "borderRadius": "4px",
  9587. },
  9588. "innerHTML": "确认并提交"
  9589. })
  9590. let aTool = ''
  9591. let _loading = document.createElement('div')
  9592. _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;"
  9593. // _loading.id = "";
  9594. let _lchild = document.createElement('div')
  9595. let _limg = document.createElement('img')
  9596. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9597. _limg.style = "width: 26px;margin-right: 10px;"
  9598. _lchild.appendChild(_limg)
  9599. let _lspan = document.createElement('span')
  9600. _lspan.innerHTML = "上传中..."
  9601. _lchild.appendChild(_lspan)
  9602. _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%);"
  9603. _loading.appendChild(_lchild)
  9604. var _box = $$('div', {
  9605. "style": {
  9606. "position": "relative",
  9607. "width": "100%",
  9608. "height": "100%",
  9609. },
  9610. })
  9611. _box.appendChild(_loading)
  9612. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9613. switch (str) {
  9614. case "whiteboard":
  9615. aTool = 1;
  9616. _iframe = $$("iframe", {
  9617. "frameborder": "no",
  9618. "border": "0",
  9619. "scrolling ": "no",
  9620. "style": {
  9621. "cssText": "border:0;width:100%;height:100%"
  9622. },
  9623. "src": "https://beta.iwb.cocorobo.cn/"
  9624. })
  9625. _box.appendChild(_iframe);
  9626. _box.appendChild(_jie);
  9627. _formdiv = new U.UF.UI.form(
  9628. "电子白板",
  9629. _box, {
  9630. "id": "whiteboards" + cid + stage + task + tool,
  9631. "style": {
  9632. "width": "90%",
  9633. "height": "90%",
  9634. "overflow": 'hidden'
  9635. },
  9636. "onresize": function () { }
  9637. }, {
  9638. closecallback: function () { }
  9639. }, {
  9640. "style": {
  9641. "height": "36px"
  9642. }
  9643. }).form; //创建窗体
  9644. _taskbar = {
  9645. "id": str + _formdiv.id,
  9646. "style": {
  9647. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9648. },
  9649. "name": "电子白板",
  9650. "forms": _formdiv,
  9651. "click": function () {
  9652. U.MD.D.I.openApplication(str, obj, info);
  9653. }
  9654. }
  9655. break;
  9656. case "mind":
  9657. aTool = 3;
  9658. _iframe = $$("iframe", {
  9659. "frameborder": "no",
  9660. "border": "0",
  9661. "scrolling ": "no",
  9662. "style": {
  9663. "cssText": "border:0;width:100%;height:100%"
  9664. },
  9665. "src": "/kityminder-editor/dist/index.html"
  9666. });
  9667. _box.appendChild(_iframe);
  9668. _box.appendChild(_jie);
  9669. _formdiv = new U.UF.UI.form(
  9670. "思维导图",
  9671. _box, { //"/jsmind/example/demo.html"
  9672. "id": "minds" + cid + stage + task + tool,
  9673. "style": {
  9674. "width": "90%",
  9675. "height": "90%",
  9676. "overflow": 'hidden'
  9677. },
  9678. "onresize": function () { }
  9679. }, {
  9680. closecallback: function () { }
  9681. }, {
  9682. "style": {
  9683. "height": "36px"
  9684. }
  9685. }).form; //创建窗体
  9686. _taskbar = {
  9687. "id": str + _formdiv.id,
  9688. "style": {
  9689. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9690. },
  9691. "name": "思维导图",
  9692. "forms": _formdiv,
  9693. "click": function () {
  9694. U.MD.D.I.openApplication(str, obj, info);
  9695. }
  9696. }
  9697. break;
  9698. case "doc":
  9699. aTool = 6;
  9700. _iframe = $$("iframe", {
  9701. "frameborder": "no",
  9702. "border": "0",
  9703. "scrolling ": "no",
  9704. "style": {
  9705. "cssText": "border:0;width:100%;height:100%"
  9706. },
  9707. "src": "/Office/Word/WordEditArea.htm"
  9708. })
  9709. _box.appendChild(_iframe);
  9710. _box.appendChild(_jie);
  9711. _formdiv = new U.UF.UI.form(
  9712. "协同文档",
  9713. _box, {
  9714. "id": "docs" + cid + stage + task + tool,
  9715. "style": {
  9716. "width": "90%",
  9717. "height": "90%",
  9718. "overflow": 'hidden'
  9719. },
  9720. "onresize": function () { }
  9721. }, {
  9722. closecallback: function () { }
  9723. }, {
  9724. "style": {
  9725. "height": "36px"
  9726. }
  9727. }).form; //创建窗体
  9728. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9729. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9730. })
  9731. _taskbar = {
  9732. "id": str + _formdiv.id,
  9733. "style": {
  9734. "backgroundImage": "url(/img/icon/doc.png)"
  9735. },
  9736. "name": "协同文档",
  9737. "forms": _formdiv,
  9738. "click": function () {
  9739. U.MD.D.I.openApplication(str, obj, info);
  9740. }
  9741. }
  9742. break;
  9743. }
  9744. const script1 = document.createElement("script");
  9745. script1.type = "text/javascript";
  9746. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9747. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9748. const script2 = document.createElement("script");
  9749. script2.type = "text/javascript";
  9750. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9751. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9752. const script3 = document.createElement("script");
  9753. script3.type = "text/javascript";
  9754. script3.charset = "UTF-8";
  9755. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9756. const script4 = document.createElement("script");
  9757. script4.type = "text/javascript";
  9758. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9759. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9760. if (_iframe) {
  9761. if (str == 'doc') {
  9762. _iframe = _formdiv.querySelector('iframe')
  9763. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9764. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9765. _iframe.contentWindow.document.body.appendChild(script1);
  9766. _iframe.contentWindow.document.body.appendChild(script2);
  9767. // _iframe.contentWindow.document.body.appendChild(script3);
  9768. _iframe.contentWindow.document.body.appendChild(script4);
  9769. })
  9770. if (onloadListener) {
  9771. _iframe.contentDocument.location.reload()
  9772. } else {
  9773. _iframe.contentDocument.location.reload()
  9774. }
  9775. } else if (str == 'mind') {
  9776. _iframe = _formdiv.querySelector('iframe')
  9777. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9778. _iframe.contentWindow.document.body.appendChild(script1);
  9779. _iframe.contentWindow.document.body.appendChild(script2);
  9780. _iframe.contentWindow.document.body.appendChild(script4);
  9781. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9782. })
  9783. if (onloadListener) {
  9784. _iframe.contentDocument.location.reload()
  9785. } else {
  9786. _iframe.contentDocument.location.reload()
  9787. }
  9788. } else {
  9789. _iframe.onload = () => {
  9790. _iframe.contentWindow.document.body.appendChild(script1);
  9791. _iframe.contentWindow.document.body.appendChild(script2);
  9792. // _iframe.contentWindow.document.body.appendChild(script3);
  9793. _iframe.contentWindow.document.body.appendChild(script4);
  9794. };
  9795. }
  9796. _jie.onclick = async () => {
  9797. let text = ''
  9798. if (aTool == 6) {
  9799. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9800. } else if (aTool == 3) {
  9801. text = await U.MD.D.I.getEditorContent(_iframe);
  9802. }
  9803. _loading.style.display = 'flex'
  9804. console.log(_loading);
  9805. var _ajs = _iframe.contentWindow.document.createElement("script");
  9806. _ajs.type = "text/javascript";
  9807. _ajs.innerHTML =
  9808. // 'console.log(' + _loading + ');\n' +
  9809. 'var _js = document.createElement("script");\n' +
  9810. '_js.type="text/javascript";\n' +
  9811. '_js.charset="UTF-8";\n' +
  9812. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9813. "_js.onload = function(){\n" +
  9814. ' var a = document.getElementsByTagName("img")\n' +
  9815. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9816. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9817. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9818. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9819. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9820. "beforeUpload_shishi(file," +
  9821. "'" +
  9822. _userid +
  9823. "'" +
  9824. ", " +
  9825. "'" +
  9826. _cid +
  9827. "'" +
  9828. ", " +
  9829. "'" +
  9830. _stage +
  9831. "'" +
  9832. ", " +
  9833. "'" +
  9834. _task +
  9835. "'" +
  9836. ", " +
  9837. "'" +
  9838. _tool +
  9839. "'" +
  9840. ", " +
  9841. "'" +
  9842. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9843. "'" +
  9844. ", " +
  9845. "'" +
  9846. aTool +
  9847. "'" +
  9848. ", " +
  9849. "`" +
  9850. text +
  9851. "`" +
  9852. ")\n" +
  9853. " });\n" +
  9854. "}\n" +
  9855. "document.head.appendChild(_js);\n";
  9856. _iframe.contentWindow.document.head.appendChild(_ajs);
  9857. }
  9858. }
  9859. //U.MD.D.I.openClick(str);
  9860. //如果有任务栏信息
  9861. // if (_taskbar) {
  9862. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9863. // }
  9864. }
  9865. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9866. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9867. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9868. _userinfo = US.userInfo, //登录用户信息
  9869. _userid = US.userInfo.userid //登录用户id
  9870. let _iframe;
  9871. let _cid = cid,
  9872. _stage = stage,
  9873. _task = task,
  9874. _tool = tool;
  9875. var _jie = $$("div", {
  9876. "style": {
  9877. "position": "absolute",
  9878. "bottom": "50px",
  9879. "right": "50px",
  9880. "zIndex": "9999",
  9881. "backgroundColor": "#2268bc",
  9882. "color": "#fff",
  9883. "padding": "12px 20px",
  9884. "cursor": "pointer",
  9885. "borderRadius": "4px",
  9886. },
  9887. "innerHTML": "确认并提交"
  9888. })
  9889. let aTool = ''
  9890. let _loading = document.createElement('div')
  9891. _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;"
  9892. // _loading.id = "";
  9893. let _lchild = document.createElement('div')
  9894. let _limg = document.createElement('img')
  9895. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9896. _limg.style = "width: 26px;margin-right: 10px;"
  9897. _lchild.appendChild(_limg)
  9898. let _lspan = document.createElement('span')
  9899. _lspan.innerHTML = "上传中..."
  9900. _lchild.appendChild(_lspan)
  9901. _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%);"
  9902. _loading.appendChild(_lchild)
  9903. var _box = $$('div', {
  9904. "style": {
  9905. "position": "relative",
  9906. "width": "100%",
  9907. "height": "100%",
  9908. },
  9909. })
  9910. _box.appendChild(_loading)
  9911. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9912. switch (str) {
  9913. case "whiteboard":
  9914. aTool = 1;
  9915. _iframe = $$("iframe", {
  9916. "frameborder": "no",
  9917. "border": "0",
  9918. "scrolling ": "no",
  9919. "style": {
  9920. "cssText": "border:0;width:100%;height:100%"
  9921. },
  9922. "src": "https://beta.iwb.cocorobo.cn/"
  9923. })
  9924. _box.appendChild(_iframe);
  9925. _box.appendChild(_jie);
  9926. _formdiv = new U.UF.UI.form(
  9927. "电子白板",
  9928. _box, {
  9929. "id": "whiteboards" + cid + stage + task + tool,
  9930. "style": {
  9931. "width": "90%",
  9932. "height": "90%",
  9933. "overflow": 'hidden'
  9934. },
  9935. "onresize": function () { }
  9936. }, {
  9937. closecallback: function () { }
  9938. }, {
  9939. "style": {
  9940. "height": "36px"
  9941. }
  9942. }).form; //创建窗体
  9943. _taskbar = {
  9944. "id": str + _formdiv.id,
  9945. "style": {
  9946. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9947. },
  9948. "name": "电子白板",
  9949. "forms": _formdiv,
  9950. "click": function () {
  9951. U.MD.D.I.openApplication(str, obj, info);
  9952. }
  9953. }
  9954. break;
  9955. case "mind":
  9956. aTool = 3;
  9957. _iframe = $$("iframe", {
  9958. "frameborder": "no",
  9959. "border": "0",
  9960. "scrolling ": "no",
  9961. "style": {
  9962. "cssText": "border:0;width:100%;height:100%"
  9963. },
  9964. "src": "/kityminder-editor/dist/index.html"
  9965. });
  9966. _box.appendChild(_iframe);
  9967. _box.appendChild(_jie);
  9968. _formdiv = new U.UF.UI.form(
  9969. "思维导图",
  9970. _box, { //"/jsmind/example/demo.html"
  9971. "id": "minds" + cid + stage + task + tool,
  9972. "style": {
  9973. "width": "90%",
  9974. "height": "90%",
  9975. "overflow": 'hidden'
  9976. },
  9977. "onresize": function () { }
  9978. }, {
  9979. closecallback: function () { }
  9980. }, {
  9981. "style": {
  9982. "height": "36px"
  9983. }
  9984. }).form; //创建窗体
  9985. _taskbar = {
  9986. "id": str + _formdiv.id,
  9987. "style": {
  9988. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9989. },
  9990. "name": "思维导图",
  9991. "forms": _formdiv,
  9992. "click": function () {
  9993. U.MD.D.I.openApplication(str, obj, info);
  9994. }
  9995. }
  9996. break;
  9997. case "doc":
  9998. aTool = 6;
  9999. _iframe = $$("iframe", {
  10000. "frameborder": "no",
  10001. "border": "0",
  10002. "scrolling ": "no",
  10003. "style": {
  10004. "cssText": "border:0;width:100%;height:100%"
  10005. },
  10006. "src": "/Office/Word/WordEditArea.htm"
  10007. })
  10008. _box.appendChild(_iframe);
  10009. _box.appendChild(_jie);
  10010. _formdiv = new U.UF.UI.form(
  10011. "协同文档",
  10012. _box, {
  10013. "id": "docs" + cid + stage + task + tool,
  10014. "style": {
  10015. "width": "90%",
  10016. "height": "90%",
  10017. "overflow": 'hidden'
  10018. },
  10019. "onresize": function () { }
  10020. }, {
  10021. closecallback: function () { }
  10022. }, {
  10023. "style": {
  10024. "height": "36px"
  10025. }
  10026. }).form; //创建窗体
  10027. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10028. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10029. })
  10030. _taskbar = {
  10031. "id": str + _formdiv.id,
  10032. "style": {
  10033. "backgroundImage": "url(/img/icon/doc.png)"
  10034. },
  10035. "name": "协同文档",
  10036. "forms": _formdiv,
  10037. "click": function () {
  10038. U.MD.D.I.openApplication(str, obj, info);
  10039. }
  10040. }
  10041. break;
  10042. }
  10043. const script1 = document.createElement("script");
  10044. script1.type = "text/javascript";
  10045. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10046. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10047. const script2 = document.createElement("script");
  10048. script2.type = "text/javascript";
  10049. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10050. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10051. const script3 = document.createElement("script");
  10052. script3.type = "text/javascript";
  10053. script3.charset = "UTF-8";
  10054. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10055. const script4 = document.createElement("script");
  10056. script4.type = "text/javascript";
  10057. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10058. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10059. if (_iframe) {
  10060. if (str == 'doc') {
  10061. _iframe = _formdiv.querySelector('iframe')
  10062. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10063. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10064. _iframe.contentWindow.document.body.appendChild(script1);
  10065. _iframe.contentWindow.document.body.appendChild(script2);
  10066. // _iframe.contentWindow.document.body.appendChild(script3);
  10067. _iframe.contentWindow.document.body.appendChild(script4);
  10068. })
  10069. if (onloadListener) {
  10070. _iframe.contentDocument.location.reload()
  10071. } else {
  10072. _iframe.contentDocument.location.reload()
  10073. }
  10074. } else if (str == 'mind') {
  10075. _iframe = _formdiv.querySelector('iframe')
  10076. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10077. _iframe.contentWindow.document.body.appendChild(script1);
  10078. _iframe.contentWindow.document.body.appendChild(script2);
  10079. _iframe.contentWindow.document.body.appendChild(script4);
  10080. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10081. })
  10082. if (onloadListener) {
  10083. _iframe.contentDocument.location.reload()
  10084. } else {
  10085. _iframe.contentDocument.location.reload()
  10086. }
  10087. } else {
  10088. _iframe.onload = () => {
  10089. _iframe.contentWindow.document.body.appendChild(script1);
  10090. _iframe.contentWindow.document.body.appendChild(script2);
  10091. // _iframe.contentWindow.document.body.appendChild(script3);
  10092. _iframe.contentWindow.document.body.appendChild(script4);
  10093. };
  10094. }
  10095. _jie.onclick = async () => {
  10096. let text = ''
  10097. if (aTool == 6) {
  10098. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10099. } else if (aTool == 3) {
  10100. text = await U.MD.D.I.getEditorContent(_iframe);
  10101. }
  10102. _loading.style.display = 'flex'
  10103. console.log(_loading);
  10104. var _ajs = _iframe.contentWindow.document.createElement("script");
  10105. _ajs.type = "text/javascript";
  10106. _ajs.innerHTML =
  10107. // 'console.log(' + _loading + ');\n' +
  10108. 'var _js = document.createElement("script");\n' +
  10109. '_js.type="text/javascript";\n' +
  10110. '_js.charset="UTF-8";\n' +
  10111. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10112. "_js.onload = function(){\n" +
  10113. ' var a = document.getElementsByTagName("img")\n' +
  10114. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10115. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10116. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10117. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10118. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10119. "beforeUpload_shishi(file," +
  10120. "'" +
  10121. _userid +
  10122. "'" +
  10123. ", " +
  10124. "'" +
  10125. _cid +
  10126. "'" +
  10127. ", " +
  10128. "'" +
  10129. _stage +
  10130. "'" +
  10131. ", " +
  10132. "'" +
  10133. _task +
  10134. "'" +
  10135. ", " +
  10136. "'" +
  10137. _tool +
  10138. "'" +
  10139. ", " +
  10140. "'" +
  10141. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10142. "'" +
  10143. ", " +
  10144. "'" +
  10145. aTool +
  10146. "'" +
  10147. ", " +
  10148. "`" +
  10149. text +
  10150. "`" +
  10151. ")\n" +
  10152. " });\n" +
  10153. "}\n" +
  10154. "document.head.appendChild(_js);\n";
  10155. _iframe.contentWindow.document.head.appendChild(_ajs);
  10156. }
  10157. }
  10158. //U.MD.D.I.openClick(str);
  10159. //如果有任务栏信息
  10160. // if (_taskbar) {
  10161. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10162. // }
  10163. }
  10164. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10165. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10166. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10167. _userinfo = US.userInfo, //登录用户信息
  10168. _userid = US.userInfo.userid //登录用户id
  10169. let _iframe;
  10170. let _cid = cid,
  10171. _stage = stage,
  10172. _task = task,
  10173. _tool = tool;
  10174. var _jie = $$("div", {
  10175. "style": {
  10176. "position": "absolute",
  10177. "bottom": "50px",
  10178. "right": "50px",
  10179. "zIndex": "9999",
  10180. "backgroundColor": "#2268bc",
  10181. "color": "#fff",
  10182. "padding": "12px 20px",
  10183. "cursor": "pointer",
  10184. "borderRadius": "4px",
  10185. },
  10186. "innerHTML": "上传模板"
  10187. })
  10188. let aTool = ''
  10189. let _loading = document.createElement('div')
  10190. _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;"
  10191. // _loading.id = "";
  10192. let _lchild = document.createElement('div')
  10193. let _limg = document.createElement('img')
  10194. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10195. _limg.style = "width: 26px;margin-right: 10px;"
  10196. _lchild.appendChild(_limg)
  10197. let _lspan = document.createElement('span')
  10198. _lspan.innerHTML = "上传中..."
  10199. _lchild.appendChild(_lspan)
  10200. _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%);"
  10201. _loading.appendChild(_lchild)
  10202. var _box = $$('div', {
  10203. "style": {
  10204. "position": "relative",
  10205. "width": "100%",
  10206. "height": "100%",
  10207. },
  10208. })
  10209. _box.appendChild(_loading)
  10210. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10211. switch (str) {
  10212. case "whiteboard":
  10213. aTool = 1;
  10214. _iframe = $$("iframe", {
  10215. "frameborder": "no",
  10216. "border": "0",
  10217. "scrolling ": "no",
  10218. "style": {
  10219. "cssText": "border:0;width:100%;height:100%"
  10220. },
  10221. "src": "https://beta.iwb.cocorobo.cn/"
  10222. })
  10223. _box.appendChild(_iframe);
  10224. _box.appendChild(_jie);
  10225. _formdiv = new U.UF.UI.form(
  10226. "电子白板",
  10227. _box, {
  10228. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10229. "style": {
  10230. "width": "90%",
  10231. "height": "90%",
  10232. "overflow": 'hidden'
  10233. },
  10234. "onresize": function () { }
  10235. }, {
  10236. closecallback: function () { }
  10237. }, {
  10238. "style": {
  10239. "height": "36px"
  10240. }
  10241. }).form; //创建窗体
  10242. _taskbar = {
  10243. "id": str + _formdiv.id,
  10244. "style": {
  10245. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10246. },
  10247. "name": "电子白板",
  10248. "forms": _formdiv,
  10249. "click": function () {
  10250. U.MD.D.I.openApplication(str, obj, info);
  10251. }
  10252. }
  10253. break;
  10254. case "mind":
  10255. aTool = 3;
  10256. _iframe = $$("iframe", {
  10257. "frameborder": "no",
  10258. "border": "0",
  10259. "scrolling ": "no",
  10260. "style": {
  10261. "cssText": "border:0;width:100%;height:100%"
  10262. },
  10263. "src": "/kityminder-editor/dist/index.html"
  10264. });
  10265. _box.appendChild(_iframe);
  10266. _box.appendChild(_jie);
  10267. _formdiv = new U.UF.UI.form(
  10268. "思维导图",
  10269. _box, { //"/jsmind/example/demo.html"
  10270. "id": "minds_Yu" + cid + stage + task + tool,
  10271. "style": {
  10272. "width": "90%",
  10273. "height": "90%",
  10274. "overflow": 'hidden'
  10275. },
  10276. "onresize": function () { }
  10277. }, {
  10278. closecallback: function () { }
  10279. }, {
  10280. "style": {
  10281. "height": "36px"
  10282. }
  10283. }).form; //创建窗体
  10284. _taskbar = {
  10285. "id": str + _formdiv.id,
  10286. "style": {
  10287. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10288. },
  10289. "name": "思维导图",
  10290. "forms": _formdiv,
  10291. "click": function () {
  10292. U.MD.D.I.openApplication(str, obj, info);
  10293. }
  10294. }
  10295. break;
  10296. case "doc":
  10297. aTool = 6;
  10298. _iframe = $$("iframe", {
  10299. "frameborder": "no",
  10300. "border": "0",
  10301. "scrolling ": "no",
  10302. "style": {
  10303. "cssText": "border:0;width:100%;height:100%"
  10304. },
  10305. "src": "/Office/Word/WordEditArea.htm"
  10306. })
  10307. _box.appendChild(_iframe);
  10308. _box.appendChild(_jie);
  10309. _formdiv = new U.UF.UI.form(
  10310. "协同文档",
  10311. _box, {
  10312. "id": "docs_Yu" + cid + stage + task + tool,
  10313. "style": {
  10314. "width": "90%",
  10315. "height": "90%",
  10316. "overflow": 'hidden'
  10317. },
  10318. "onresize": function () { }
  10319. }, {
  10320. closecallback: function () { }
  10321. }, {
  10322. "style": {
  10323. "height": "36px"
  10324. }
  10325. }).form; //创建窗体
  10326. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10327. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10328. })
  10329. _taskbar = {
  10330. "id": str + _formdiv.id,
  10331. "style": {
  10332. "backgroundImage": "url(/img/icon/doc.png)"
  10333. },
  10334. "name": "协同文档",
  10335. "forms": _formdiv,
  10336. "click": function () {
  10337. U.MD.D.I.openApplication(str, obj, info);
  10338. }
  10339. }
  10340. break;
  10341. case "CocoPi":
  10342. aTool = 57;
  10343. _iframe = $$("iframe", {
  10344. "allowpaymentrequest": "allowpaymentrequest",
  10345. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10346. "webkitallowfullscreen": "",
  10347. "mozallowfullscreen": "",
  10348. "frameborder": "no",
  10349. "border": "0",
  10350. "scrolling ": "no",
  10351. "style": {
  10352. "cssText": "border:0;width:100%;height:100%"
  10353. },
  10354. "src": "https://pi.cocorobo.cn/"
  10355. })
  10356. _box.appendChild(_iframe);
  10357. _box.appendChild(_jie);
  10358. _formdiv = new U.UF.UI.form(
  10359. "CocoPi",
  10360. _box, {
  10361. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10362. "style": {
  10363. "width": "90%",
  10364. "height": "90%",
  10365. "overflow": 'hidden'
  10366. },
  10367. "onresize": function () { }
  10368. }, {
  10369. closecallback: function () { }
  10370. }, {
  10371. "style": {
  10372. "height": "36px"
  10373. }
  10374. }).form; //创建窗体
  10375. _taskbar = {
  10376. "id": str + _formdiv.id,
  10377. "style": {
  10378. "backgroundImage": "url(/img/icon/cocopi.png)"
  10379. },
  10380. "name": "CocoPi",
  10381. "forms": _formdiv,
  10382. "click": function () {
  10383. U.MD.D.I.openApplication(str, obj, info);
  10384. }
  10385. }
  10386. break;
  10387. }
  10388. if (_iframe) {
  10389. if (str == 'doc') {
  10390. _iframe = _formdiv.querySelector('iframe')
  10391. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10392. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10393. })
  10394. if (onloadListener) {
  10395. _iframe.contentDocument.location.reload()
  10396. } else {
  10397. _iframe.contentDocument.location.reload()
  10398. }
  10399. } else if (str == 'mind') {
  10400. _iframe = _formdiv.querySelector('iframe')
  10401. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10402. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10403. })
  10404. if (onloadListener) {
  10405. _iframe.contentDocument.location.reload()
  10406. } else {
  10407. _iframe.contentDocument.location.reload()
  10408. }
  10409. } else if (str == 'whiteboard') {
  10410. _iframe = _formdiv.querySelector('iframe')
  10411. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10412. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10413. })
  10414. // if (onloadListener) {
  10415. // try {
  10416. // _iframe.src += "?cocorobo="+new Date().getTime()
  10417. // _iframe.contentWindow.document.location.reload()
  10418. // } catch (error) {
  10419. // }
  10420. // } else {
  10421. // _iframe.contentDocument.location.reload()
  10422. // }
  10423. } else if (str == 'CocoPi') {
  10424. _iframe = _formdiv.querySelector('iframe')
  10425. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10426. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10427. })
  10428. if (onloadListener) {
  10429. _iframe.contentDocument.location.reload()
  10430. } else {
  10431. _iframe.contentDocument.location.reload()
  10432. }
  10433. } else {
  10434. _iframe.onload = () => { };
  10435. }
  10436. _jie.onclick = async () => {
  10437. let text = ''
  10438. let type = '2'
  10439. if (aTool == 1) {
  10440. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10441. type = '3'
  10442. } else if (aTool == 6) {
  10443. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10444. type = '1'
  10445. } else if (aTool == 3) {
  10446. text = await U.MD.D.I.getEditorContent(_iframe);
  10447. type = '2'
  10448. } else if (aTool == 57) {
  10449. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10450. type = '4'
  10451. }
  10452. _loading.style.display = 'flex'
  10453. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10454. }
  10455. }
  10456. //U.MD.D.I.openClick(str);
  10457. //如果有任务栏信息
  10458. // if (_taskbar) {
  10459. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10460. // }
  10461. }
  10462. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10463. var xmlhttp;
  10464. var Mac, Sn, DeviceId
  10465. if (window.XMLHttpRequest) {
  10466. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10467. xmlhttp = new XMLHttpRequest();
  10468. } else {
  10469. // IE6, IE5 浏览器执行代码
  10470. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10471. }
  10472. xmlhttp.onreadystatechange = function () {
  10473. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10474. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10475. // resolve(res.value[0][0].text);
  10476. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10477. }
  10478. }
  10479. }
  10480. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10481. xmlhttp.send();
  10482. }
  10483. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10484. var xmlhttp;
  10485. var Mac, Sn, DeviceId
  10486. if (window.XMLHttpRequest) {
  10487. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10488. xmlhttp = new XMLHttpRequest();
  10489. } else {
  10490. // IE6, IE5 浏览器执行代码
  10491. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10492. }
  10493. xmlhttp.onreadystatechange = function () {
  10494. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10495. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10496. // resolve(res.value[0][0].text);
  10497. if (type == '2') {
  10498. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10499. } else if (type == '3') {
  10500. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10501. } else if (type == '4') {
  10502. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10503. }
  10504. } else {
  10505. if (type == '2') {
  10506. iframe.contentWindow.editor.minder.importData('json', '')
  10507. } else if (type == '3') {
  10508. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10509. } else if (type == '4') {
  10510. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10511. }
  10512. }
  10513. }
  10514. }
  10515. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10516. xmlhttp.send();
  10517. }
  10518. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10519. var xmlhttp;
  10520. var Mac, Sn, DeviceId
  10521. if (window.XMLHttpRequest) {
  10522. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10523. xmlhttp = new XMLHttpRequest();
  10524. } else {
  10525. // IE6, IE5 浏览器执行代码
  10526. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10527. }
  10528. xmlhttp.onreadystatechange = function () {
  10529. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10530. if (xmlhttp.response) {
  10531. // resolve(res.value[0][0].text);
  10532. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10533. // $(fileInput).val('');
  10534. // });
  10535. span.innerHTML = '上传成功'
  10536. setTimeout(() => {
  10537. loading.style.display = 'none'
  10538. }, 1000);
  10539. }
  10540. }
  10541. }
  10542. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10543. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10544. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10545. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10546. // 设置请求头,表示请求体的编码格式
  10547. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10548. // 设置请求体,使用url-encoded格式的数据
  10549. }
  10550. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10551. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10552. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10553. _userinfo = US.userInfo, //登录用户信息
  10554. _userid = US.userInfo.userid //登录用户id
  10555. let _iframe;
  10556. let _cid = cid,
  10557. _stage = stage,
  10558. _task = task,
  10559. _tool = tool;
  10560. var _jie = $$("div", {
  10561. "style": {
  10562. "position": "absolute",
  10563. "bottom": "50px",
  10564. "right": "50px",
  10565. "zIndex": "9999",
  10566. "backgroundColor": "#2268bc",
  10567. "color": "#fff",
  10568. "padding": "12px 20px",
  10569. "cursor": "pointer",
  10570. "borderRadius": "4px",
  10571. },
  10572. "innerHTML": "提交作业"
  10573. })
  10574. let aTool = ''
  10575. let _loading = document.createElement('div')
  10576. _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;"
  10577. // _loading.id = "";
  10578. let _lchild = document.createElement('div')
  10579. let _limg = document.createElement('img')
  10580. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10581. _limg.style = "width: 26px;margin-right: 10px;"
  10582. _lchild.appendChild(_limg)
  10583. let _lspan = document.createElement('span')
  10584. _lspan.innerHTML = "上传中..."
  10585. _lchild.appendChild(_lspan)
  10586. _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%);"
  10587. _loading.appendChild(_lchild)
  10588. var _box = $$('div', {
  10589. "style": {
  10590. "position": "relative",
  10591. "width": "100%",
  10592. "height": "100%",
  10593. },
  10594. })
  10595. _box.appendChild(_loading)
  10596. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10597. switch (str) {
  10598. case "CocoPi":
  10599. aTool = 57;
  10600. _iframe = $$("iframe", {
  10601. "allowpaymentrequest": "allowpaymentrequest",
  10602. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10603. "webkitallowfullscreen": "",
  10604. "mozallowfullscreen": "",
  10605. "frameborder": "no",
  10606. "border": "0",
  10607. "scrolling ": "no",
  10608. "style": {
  10609. "cssText": "border:0;width:100%;height:100%"
  10610. },
  10611. "src": "https://pi.cocorobo.cn/"
  10612. })
  10613. _box.appendChild(_iframe);
  10614. _box.appendChild(_jie);
  10615. _formdiv = new U.UF.UI.form(
  10616. "CocoPi",
  10617. _box, {
  10618. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10619. "style": {
  10620. "width": "90%",
  10621. "height": "90%",
  10622. "overflow": 'hidden'
  10623. },
  10624. "onresize": function () { }
  10625. }, {
  10626. closecallback: function () { }
  10627. }, {
  10628. "style": {
  10629. "height": "36px"
  10630. }
  10631. }).form; //创建窗体
  10632. _taskbar = {
  10633. "id": str + _formdiv.id,
  10634. "style": {
  10635. "backgroundImage": "url(/img/icon/cocopi.png)"
  10636. },
  10637. "name": "CocoPi",
  10638. "forms": _formdiv,
  10639. "click": function () {
  10640. U.MD.D.I.openApplication(str, obj, info);
  10641. }
  10642. }
  10643. break;
  10644. }
  10645. if (_iframe) {
  10646. if (str == 'CocoPi') {
  10647. _iframe = _formdiv.querySelector('iframe')
  10648. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10649. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10650. })
  10651. if (onloadListener) {
  10652. _iframe.contentDocument.location.reload()
  10653. } else {
  10654. _iframe.contentDocument.location.reload()
  10655. }
  10656. }
  10657. _jie.onclick = async () => {
  10658. let text = ''
  10659. if (aTool == 57) {
  10660. text = _iframe.contentWindow.getLoadXmlStr()
  10661. }
  10662. _loading.style.display = 'flex'
  10663. console.log(_loading);
  10664. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10665. _loading.style.display = 'none'
  10666. let _div = document.createElement('div')
  10667. _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;"
  10668. let _inner = document.createElement('div')
  10669. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10670. _inner.innerHTML = "上传成功"
  10671. _div.appendChild(_inner)
  10672. _iframe.contentWindow.window.document.body.appendChild(_div)
  10673. _div.onclick = () => {
  10674. _iframe.contentWindow.window.document.body.removeChild(_div)
  10675. }
  10676. setTimeout(() => {
  10677. _iframe.contentWindow.window.document.body.removeChild(_div)
  10678. }, 1000);
  10679. }, [], { "type": "POST", "withCredentials": true });
  10680. }
  10681. }
  10682. }
  10683. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10684. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10685. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10686. _userid = student.userid, //登录用户id
  10687. _username = student.student //用户名字
  10688. let _iframe;
  10689. let _cid = cid,
  10690. _stage = stage,
  10691. _task = task,
  10692. _tool = tool;
  10693. var _jie = $$("div", {
  10694. "style": {
  10695. "position": "absolute",
  10696. "bottom": "50px",
  10697. "right": "50px",
  10698. "zIndex": "9999",
  10699. "backgroundColor": "#2268bc",
  10700. "color": "#fff",
  10701. "padding": "12px 20px",
  10702. "cursor": "pointer",
  10703. "borderRadius": "4px",
  10704. },
  10705. "innerHTML": "提交作业"
  10706. })
  10707. let aTool = ''
  10708. let _loading = document.createElement('div')
  10709. _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;"
  10710. // _loading.id = "";
  10711. let _lchild = document.createElement('div')
  10712. let _limg = document.createElement('img')
  10713. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10714. _limg.style = "width: 26px;margin-right: 10px;"
  10715. _lchild.appendChild(_limg)
  10716. let _lspan = document.createElement('span')
  10717. _lspan.innerHTML = "上传中..."
  10718. _lchild.appendChild(_lspan)
  10719. _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%);"
  10720. _loading.appendChild(_lchild)
  10721. var _box = $$('div', {
  10722. "style": {
  10723. "position": "relative",
  10724. "width": "100%",
  10725. "height": "100%",
  10726. },
  10727. })
  10728. _box.appendChild(_loading)
  10729. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10730. switch (str) {
  10731. case "CocoPi":
  10732. aTool = 57;
  10733. _iframe = $$("iframe", {
  10734. "allowpaymentrequest": "allowpaymentrequest",
  10735. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10736. "webkitallowfullscreen": "",
  10737. "mozallowfullscreen": "",
  10738. "frameborder": "no",
  10739. "border": "0",
  10740. "scrolling ": "no",
  10741. "style": {
  10742. "cssText": "border:0;width:100%;height:100%"
  10743. },
  10744. "src": "https://pi.cocorobo.cn/"
  10745. })
  10746. _box.appendChild(_iframe);
  10747. _box.appendChild(_jie);
  10748. _formdiv = new U.UF.UI.form(
  10749. "CocoPi-" + _username,
  10750. _box, {
  10751. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10752. "style": {
  10753. "width": "90%",
  10754. "height": "90%",
  10755. "overflow": 'hidden'
  10756. },
  10757. "onresize": function () { }
  10758. }, {
  10759. closecallback: function () { }
  10760. }, {
  10761. "style": {
  10762. "height": "36px"
  10763. }
  10764. }).form; //创建窗体
  10765. _taskbar = {
  10766. "id": str + _formdiv.id,
  10767. "style": {
  10768. "backgroundImage": "url(/img/icon/cocopi.png)"
  10769. },
  10770. "name": "CocoPi",
  10771. "forms": _formdiv,
  10772. "click": function () {
  10773. U.MD.D.I.openApplication(str, obj, info);
  10774. }
  10775. }
  10776. break;
  10777. }
  10778. if (_iframe) {
  10779. if (str == 'CocoPi') {
  10780. _iframe = _formdiv.querySelector('iframe')
  10781. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10782. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10783. })
  10784. if (onloadListener) {
  10785. _iframe.contentDocument.location.reload()
  10786. } else {
  10787. _iframe.contentDocument.location.reload()
  10788. }
  10789. }
  10790. _jie.onclick = async () => {
  10791. let text = ''
  10792. if (aTool == 57) {
  10793. text = _iframe.contentWindow.getLoadXmlStr()
  10794. }
  10795. _loading.style.display = 'flex'
  10796. console.log(_loading);
  10797. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10798. _loading.style.display = 'none'
  10799. let _div = document.createElement('div')
  10800. _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;"
  10801. let _inner = document.createElement('div')
  10802. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10803. _inner.innerHTML = "上传成功"
  10804. _div.appendChild(_inner)
  10805. _iframe.contentWindow.window.document.body.appendChild(_div)
  10806. _div.onclick = () => {
  10807. _iframe.contentWindow.window.document.body.removeChild(_div)
  10808. }
  10809. setTimeout(() => {
  10810. _iframe.contentWindow.window.document.body.removeChild(_div)
  10811. }, 1000);
  10812. }, [], { "type": "POST", "withCredentials": true });
  10813. }
  10814. }
  10815. }
  10816. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10817. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10818. if (res.value[0].length > 0) {
  10819. if (atool == 57) {
  10820. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10821. }
  10822. } else {
  10823. if (atool == 57) {
  10824. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10825. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10826. }
  10827. }
  10828. }, [], { "type": "POST", "withCredentials": true });
  10829. }
  10830. U.MD.D.addOp = function(text,type,time){
  10831. var userInfo = US.userInfo;
  10832. if(Object.keys(userInfo).length !== 0){
  10833. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10834. }, [], { "type": "POST", "withCredentials": true });
  10835. }
  10836. }