DeskTop.js 673 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721
  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. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  989. ];
  990. //成华教育局
  991. U.MD.D.I.chjyjTeacherDeskIcon = [
  992. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  993. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  994. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  995. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  996. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  997. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  998. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  999. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1000. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1001. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1002. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1004. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1005. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1006. ];
  1007. //成华教育局chjyj
  1008. U.MD.D.I.chjyjAdminDeskIcon = [
  1009. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1010. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1011. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1012. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1013. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1014. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1015. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1016. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1017. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1018. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1019. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.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.chjyjStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcStudentDeskIcon = [
  1034. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. ];
  1039. //tpc
  1040. U.MD.D.I.tpcTeacherDeskIcon = [
  1041. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1042. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1047. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1048. ];
  1049. //tpc
  1050. U.MD.D.I.tpcAdminDeskIcon = [
  1051. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1052. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1057. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1058. ];
  1059. //THU-IOE
  1060. U.MD.D.I.thuioeTeacherDeskIcon = [
  1061. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1062. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1063. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1064. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1065. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1066. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1067. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1068. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1069. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1070. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1071. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1072. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1073. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1074. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1075. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1076. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1077. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1078. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1079. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1080. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1081. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1082. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1083. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1084. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1085. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1086. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1087. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1088. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1089. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1090. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1091. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1092. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1093. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1094. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1095. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1099. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1100. ];
  1101. //THU-IOE
  1102. U.MD.D.I.thuioeStudentDeskIcon = [
  1103. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1104. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1105. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1106. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1107. ];
  1108. //jccssyl
  1109. U.MD.D.I.jccssylTeacherDeskIcon = [
  1110. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1111. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1112. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1113. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1114. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1115. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1116. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1117. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1118. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1119. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1120. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1121. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1122. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1123. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1126. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1127. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1128. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1129. ];
  1130. //jccssyl
  1131. U.MD.D.I.jccssylStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //cale
  1138. U.MD.D.I.caleTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //cale
  1160. U.MD.D.I.caleStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //lqwmsgzs
  1167. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1175. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1176. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1177. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1178. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1179. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1180. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1181. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1182. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1183. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1184. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1185. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1186. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1187. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1188. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1189. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1190. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1191. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1192. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1193. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1194. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1195. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1196. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1197. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1198. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1199. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1200. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1201. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1204. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1205. ];
  1206. //lqwmsgzs
  1207. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1208. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1209. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1210. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1211. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1212. ];
  1213. //盐田区幼儿园
  1214. U.MD.D.I.ytyTeacherDeskIcon = [
  1215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1217. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1218. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1219. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1220. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1221. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1222. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1223. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1224. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1225. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1226. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1227. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyStudentDeskIcon = [
  1231. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. ];
  1235. //scnuai
  1236. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1237. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1238. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1239. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1242. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1243. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1244. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1245. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1246. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1247. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1248. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1249. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1251. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1252. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1253. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1254. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1255. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1256. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1257. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1258. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1259. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1260. ];
  1261. //scnuai
  1262. U.MD.D.I.scnuaiAdminDeskIcon = [
  1263. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1264. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1265. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1266. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1267. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1268. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1269. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1270. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1271. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1272. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1273. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1274. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1275. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1277. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1278. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1279. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1280. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1281. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1282. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1283. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1284. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1285. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1286. ];
  1287. //scnuai
  1288. U.MD.D.I.scnuaiStudentDeskIcon = [
  1289. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1290. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1291. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1292. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. ];
  1294. //cocobiz
  1295. U.MD.D.I.cocobizteacherDeskIcon = [
  1296. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1297. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1303. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1304. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1305. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1306. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1307. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1308. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1309. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1311. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1312. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1313. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1314. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1315. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1316. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1317. ];
  1318. //cocobiz
  1319. U.MD.D.I.cocobizStudentDeskIcon = [
  1320. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1326. ];
  1327. //xxzjky
  1328. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1329. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1331. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1332. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1338. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1339. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1340. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1341. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1342. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1345. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1346. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1347. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1348. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1349. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1350. ];
  1351. //xxzjky
  1352. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1353. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1359. ];
  1360. //nsfx
  1361. U.MD.D.I.nsfxTeacherDeskIcon = [
  1362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1364. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1365. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1368. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1369. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1370. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1371. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1377. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1378. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1379. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1380. ];
  1381. //nsfx
  1382. U.MD.D.I.nsfxStudentDeskIcon = [
  1383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1385. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //stia
  1389. U.MD.D.I.stiaTeacherDeskIcon = [
  1390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1391. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1392. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1393. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1394. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1395. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1396. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1397. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1398. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1399. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1400. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1401. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1402. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1403. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1404. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1405. ];
  1406. //stia
  1407. U.MD.D.I.stiaStudentDeskIcon = [
  1408. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //szdjg
  1414. U.MD.D.I.szdjgTeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. ];
  1418. //szdjg
  1419. U.MD.D.I.szdjgStudentDeskIcon = [
  1420. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1421. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1422. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1423. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. ];
  1425. //010607
  1426. U.MD.D.I.x010607TeacherDeskIcon = [
  1427. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1428. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1430. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1431. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1432. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1433. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1434. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1435. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1438. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1439. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1440. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1441. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1442. ];
  1443. //010607
  1444. U.MD.D.I.x010607StudentDeskIcon = [
  1445. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1446. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1447. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. ];
  1450. //010608
  1451. U.MD.D.I.x010608TeacherDeskIcon = [
  1452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1459. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1462. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1463. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1464. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1465. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1466. ];
  1467. //010608
  1468. U.MD.D.I.x010608StudentDeskIcon = [
  1469. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1470. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1471. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1473. ];
  1474. //xhly
  1475. U.MD.D.I.xhlyTeacherDeskIcon = [
  1476. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1477. ];
  1478. //010608
  1479. U.MD.D.I.xhlyStudentDeskIcon = [
  1480. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1481. ];
  1482. //北师大
  1483. U.MD.D.I.BSDNSteacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1487. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1488. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1491. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1492. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1494. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1495. ];
  1496. //北师大
  1497. U.MD.D.I.BSDNSstudentDeskIcon = [
  1498. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. ];
  1503. //CUHK_EDU
  1504. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1505. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1506. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1507. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1508. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1509. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1510. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1511. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1512. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1515. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1516. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1517. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1518. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1519. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1520. ];
  1521. //CUHK_EDU
  1522. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1523. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1526. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1527. ];
  1528. //010503
  1529. U.MD.D.I.x010503TeacherDeskIcon = [
  1530. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1531. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1532. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1533. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1534. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1535. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1536. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1538. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1539. ];
  1540. //010503
  1541. U.MD.D.I.x010503StudentDeskIcon = [
  1542. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1545. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. ];
  1547. //SPROUT Lab
  1548. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1549. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1550. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1552. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1553. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1554. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1555. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1556. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1557. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1558. ];
  1559. //SPROUT Lab
  1560. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1563. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //010204
  1567. U.MD.D.I.x010204TeacherDeskIcon = [
  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. ];
  1571. //010204
  1572. U.MD.D.I.x010204StudentDeskIcon = [
  1573. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1574. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1575. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1577. ];
  1578. //trail
  1579. U.MD.D.I.trailTeacherDeskIcon = [
  1580. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1581. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. ];
  1583. //trail
  1584. U.MD.D.I.trailStudentDeskIcon = [
  1585. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1586. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1587. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1589. ];
  1590. //010504
  1591. U.MD.D.I.x010504TeacherDeskIcon = [
  1592. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1593. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1595. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1596. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1598. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1600. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1601. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1602. ];
  1603. //010504
  1604. U.MD.D.I.x010504StudentDeskIcon = [
  1605. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1608. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1609. ];
  1610. //SCNUET
  1611. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1612. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1613. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1617. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1618. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1619. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1620. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1622. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1623. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1624. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1625. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1626. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1627. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1628. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1629. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1630. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1631. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1633. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1634. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1635. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1636. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1637. ];
  1638. //SCNUET
  1639. U.MD.D.I.SCNUETAdminDeskIcon = [
  1640. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1641. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1642. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1643. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1644. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1645. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1646. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1647. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1648. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1649. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1650. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1651. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1652. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1653. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1654. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1655. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1656. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1657. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.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": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1661. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1662. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1663. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1664. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1665. ];
  1666. //SCNUET
  1667. U.MD.D.I.SCNUETStudentDeskIcon = [
  1668. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1670. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. ];
  1673. //x020201
  1674. U.MD.D.I.x020201TeacherDeskIcon = [
  1675. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1676. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1677. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1682. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1683. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1687. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1688. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1689. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1690. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1691. ];
  1692. //x020201
  1693. U.MD.D.I.x020201AdminDeskIcon = [
  1694. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1695. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1696. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1698. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1699. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1702. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1704. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1705. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1706. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1707. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1708. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1709. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1710. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1711. ];
  1712. //020201
  1713. U.MD.D.I.x020201StudentDeskIcon = [
  1714. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1715. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1718. ];
  1719. //010611
  1720. U.MD.D.I.x010611TeacherDeskIcon = [
  1721. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1722. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1724. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1725. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1726. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1730. ];
  1731. //010611
  1732. U.MD.D.I.x010611StudentDeskIcon = [
  1733. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. ];
  1738. //tianyuan
  1739. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1740. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1741. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1742. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1743. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1744. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1746. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1748. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1749. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1750. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1751. ];
  1752. //010611
  1753. U.MD.D.I.tianyuanStudentDeskIcon = [
  1754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1758. ];
  1759. //320101
  1760. U.MD.D.I.x320101TeacherDeskIcon = [
  1761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1773. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1774. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1775. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1776. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1777. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1778. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1779. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1780. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1781. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1782. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1783. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1784. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1785. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1786. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1787. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1788. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1789. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1790. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1791. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1792. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1793. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1794. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1796. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1797. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1798. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1799. ];
  1800. //320101
  1801. U.MD.D.I.x320101StudentDeskIcon = [
  1802. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1803. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1804. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1805. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1806. ];
  1807. //#region 桌面初始化a
  1808. /**
  1809. * 初始化桌面的起始函数
  1810. *
  1811. */
  1812. U.MD.D.I.init = function () {
  1813. if ($("#U_MD_D_K")[0]) {
  1814. //初始化桌面图标
  1815. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1816. // var clickUrl = ':12588/requestIp.php';
  1817. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1818. // U.MD.D.I.Ip = data;
  1819. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1820. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1821. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1822. // })
  1823. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1824. // })
  1825. }
  1826. }
  1827. /**
  1828. * 模式切换
  1829. *
  1830. */
  1831. U.MD.D.I.ModeCheck = function (type) {
  1832. if (US.Config.type == type) {
  1833. return
  1834. }
  1835. US.Config.type = type
  1836. $('.U_PBL_Check .active')[0].className = ''
  1837. if (type == 1) {
  1838. $('.U_PBL_Check div')[0].className = 'active'
  1839. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1840. } else {
  1841. $('.U_PBL_Check div')[1].className = 'active'
  1842. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1843. }
  1844. //初始化桌面图标
  1845. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1846. if (type == 2) {
  1847. U.MD.D.I.openApplication("project")
  1848. }
  1849. }
  1850. /**
  1851. * 隐藏任务栏
  1852. *
  1853. * @param {element} 桌面元素
  1854. */
  1855. U.MD.D.I.hiddenTaskbar = function (el) {
  1856. //任务栏位置变小
  1857. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1858. //桌面的位置变大
  1859. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1860. }
  1861. /**
  1862. * 隐藏任务栏
  1863. *
  1864. * @param {element} 桌面元素
  1865. */
  1866. U.MD.D.I.hiddenTaskbarout = function (el) {
  1867. //任务栏位置变小
  1868. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1869. //任务栏位置变化
  1870. U.selectEl(el).css({ "bottom": "-60px" });
  1871. //桌面的位置变大
  1872. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1873. }
  1874. }
  1875. /**
  1876. * 初始化打印桌面图标
  1877. *
  1878. * @param {element} 桌面元素
  1879. */
  1880. U.MD.D.I.initDesktopIcons = function (el, type) {
  1881. var i, //用于循环
  1882. _content, //桌面图标元素
  1883. _iconcontent, //桌面图标元素
  1884. _frag = $$("frag"), //定义一个碎片元素
  1885. _type = US.userInfo.type,
  1886. _org = US.userInfo.org,
  1887. _oid = US.userInfo.organizeid,
  1888. _role = US.userInfo.role,
  1889. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1890. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1891. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1892. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1893. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1894. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1895. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1896. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1897. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1898. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1899. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1900. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1901. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1902. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1903. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1904. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1905. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1906. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1907. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1908. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1909. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1910. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1911. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1912. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1913. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1914. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1915. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1916. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1917. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1918. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1919. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1920. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1921. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1922. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1923. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1924. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1925. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1926. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1927. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1928. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1929. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1930. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1931. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1932. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1933. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1934. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1935. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1936. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1937. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1938. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1939. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1940. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1941. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1942. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1943. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1944. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1945. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1946. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1947. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1948. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1949. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1950. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1951. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1952. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1953. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1954. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1955. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1956. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1957. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1958. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1959. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1960. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1961. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1962. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1963. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1964. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1965. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1966. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1967. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1968. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1969. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1970. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1971. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1972. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1973. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1974. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1975. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1976. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1977. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1978. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1979. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1980. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1981. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1982. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1983. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1984. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1985. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1986. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1987. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1988. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1989. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1990. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1991. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1992. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1993. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1994. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1995. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1996. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1997. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1998. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1999. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2000. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2001. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2002. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2003. 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'];
  2004. //清楚桌面图标
  2005. el.innerHTML = "";
  2006. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2007. _teacherDesktopIconInfo.push(
  2008. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2009. { "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)" } },
  2010. )
  2011. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2012. }
  2013. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2014. _teacherDesktopIconInfo.push(
  2015. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2016. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2017. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2018. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2019. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2020. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2021. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2022. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2023. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2024. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2025. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2026. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2027. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2028. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2029. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2030. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2031. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2032. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2033. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2034. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2035. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2036. )
  2037. }
  2038. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2039. _teacherDesktopIconInfo.push(
  2040. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2041. )
  2042. }
  2043. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2044. // _teacherDesktopIconInfo.push(
  2045. // )
  2046. // }
  2047. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2048. _teacherDesktopIconInfo.push(
  2049. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2050. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2051. )
  2052. }
  2053. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2054. _teacherDesktopIconInfo.push(
  2055. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2056. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2057. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2058. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2059. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2060. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2061. )
  2062. _studentDesktopIconInfo.push(
  2063. )
  2064. }
  2065. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2066. _teacherDesktopIconInfo.push(
  2067. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2068. )
  2069. _studentDesktopIconInfo.push(
  2070. )
  2071. }
  2072. //010606 组织
  2073. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2074. _teacherDesktopIconInfo.push(
  2075. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2076. )
  2077. _studentDesktopIconInfo.push(
  2078. )
  2079. }
  2080. //麒麟二中 和 民新小学
  2081. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2082. _teacherDesktopIconInfo.push(
  2083. )
  2084. }
  2085. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2086. _teacherDesktopIconInfo.push(
  2087. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2088. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2089. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2090. )
  2091. }
  2092. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2093. _hkTeacherDeskIconInfo.push(
  2094. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2095. )
  2096. }
  2097. //北师大附中(010601)
  2098. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2099. // _teacherDesktopIconInfo.push(
  2100. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2101. // )
  2102. // _studentDesktopIconInfo.push(
  2103. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2104. // )
  2105. // }
  2106. //樂善堂余近卿中學
  2107. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2108. _teacherDesktopIconInfo.push(
  2109. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2110. )
  2111. }
  2112. // Education Artificial Intelligence
  2113. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2114. _teacherDesktopIconInfo.push(
  2115. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2116. )
  2117. }
  2118. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2119. _teacherDesktopIconInfo.push(
  2120. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2121. )
  2122. }
  2123. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2124. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2125. _teacherDesktopIconInfo.push(
  2126. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2127. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2128. )
  2129. }
  2130. //麒麟二中
  2131. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2132. _studentDesktopIconInfo.push(
  2133. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2134. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2135. )
  2136. }
  2137. //万科双语
  2138. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2139. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2140. if (el.Name == '项目管理') {
  2141. el.Name = 'PBL项目'
  2142. }
  2143. return el
  2144. })
  2145. _studentDesktopIconInfo3.push(
  2146. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2147. )
  2148. }
  2149. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2150. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2151. return el.Name != '魔盒识字' && el.Name != '24点'
  2152. })
  2153. }
  2154. 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) {
  2155. _studentDesktopIconInfo.push(
  2156. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2157. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2158. )
  2159. }
  2160. //循环创建桌面图标
  2161. if (type == 1) {
  2162. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2163. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2164. _content = $$("div", {
  2165. className: "U_MD_D_KO",
  2166. "onmousedown": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_studentDesktopIconInfo[i]]),
  2170. "onclick": U.UF.C.closure(function (obj) {
  2171. //防止拖动图标即打开了桌面应用
  2172. U.MD.D.click(this, obj);
  2173. }, [_studentDesktopIconInfo[i]])
  2174. }, _frag); //
  2175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2178. }
  2179. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2180. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2181. _content = $$("div", {
  2182. className: "U_MD_D_KO",
  2183. "onmousedown": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2187. "onclick": U.UF.C.closure(function (obj) {
  2188. //防止拖动图标即打开了桌面应用
  2189. U.MD.D.click(this, obj);
  2190. }, [_hkZJLSStudentDeskIconInfo[i]])
  2191. }, _frag); //
  2192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2195. } //
  2196. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2197. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2198. _content = $$("div", {
  2199. className: "U_MD_D_KO",
  2200. "onmousedown": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_ytyStudentDeskIconInfo[i]]),
  2204. "onclick": U.UF.C.closure(function (obj) {
  2205. //防止拖动图标即打开了桌面应用
  2206. U.MD.D.click(this, obj);
  2207. }, [_ytyStudentDeskIconInfo[i]])
  2208. }, _frag); //
  2209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2212. } //
  2213. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2214. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2215. _content = $$("div", {
  2216. className: "U_MD_D_KO",
  2217. "onmousedown": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_jccssylStudentDeskIconInfo[i]]),
  2221. "onclick": U.UF.C.closure(function (obj) {
  2222. //防止拖动图标即打开了桌面应用
  2223. U.MD.D.click(this, obj);
  2224. }, [_jccssylStudentDeskIconInfo[i]])
  2225. }, _frag); //
  2226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2229. }
  2230. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2231. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2232. _content = $$("div", {
  2233. className: "U_MD_D_KO",
  2234. "onmousedown": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_scnuaiStudentDeskIconInfo[i]]),
  2238. "onclick": U.UF.C.closure(function (obj) {
  2239. //防止拖动图标即打开了桌面应用
  2240. U.MD.D.click(this, obj);
  2241. }, [_scnuaiStudentDeskIconInfo[i]])
  2242. }, _frag); //
  2243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2246. }
  2247. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2248. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2249. _content = $$("div", {
  2250. className: "U_MD_D_KO",
  2251. "onmousedown": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_caleStudentDeskIconInfo[i]]),
  2255. "onclick": U.UF.C.closure(function (obj) {
  2256. //防止拖动图标即打开了桌面应用
  2257. U.MD.D.click(this, obj);
  2258. }, [_caleStudentDeskIconInfo[i]])
  2259. }, _frag); //
  2260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2263. }
  2264. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2265. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2266. _content = $$("div", {
  2267. className: "U_MD_D_KO",
  2268. "onmousedown": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_thuioeStudentDeskIconInfo[i]]),
  2272. "onclick": U.UF.C.closure(function (obj) {
  2273. //防止拖动图标即打开了桌面应用
  2274. U.MD.D.click(this, obj);
  2275. }, [_thuioeStudentDeskIconInfo[i]])
  2276. }, _frag); //
  2277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2280. }
  2281. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2282. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2283. _content = $$("div", {
  2284. className: "U_MD_D_KO",
  2285. "onmousedown": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_tpcStudentDeskIconInfo[i]]),
  2289. "onclick": U.UF.C.closure(function (obj) {
  2290. //防止拖动图标即打开了桌面应用
  2291. U.MD.D.click(this, obj);
  2292. }, [_tpcStudentDeskIconInfo[i]])
  2293. }, _frag); //
  2294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2297. } //
  2298. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2299. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2300. _content = $$("div", {
  2301. className: "U_MD_D_KO",
  2302. "onmousedown": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_chjyjStudentDeskIconInfo[i]]),
  2306. "onclick": U.UF.C.closure(function (obj) {
  2307. //防止拖动图标即打开了桌面应用
  2308. U.MD.D.click(this, obj);
  2309. }, [_chjyjStudentDeskIconInfo[i]])
  2310. }, _frag); //
  2311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2314. }
  2315. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2316. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2317. _content = $$("div", {
  2318. className: "U_MD_D_KO",
  2319. "onmousedown": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_szjkyStudentDeskIconInfo[i]]),
  2323. "onclick": U.UF.C.closure(function (obj) {
  2324. //防止拖动图标即打开了桌面应用
  2325. U.MD.D.click(this, obj);
  2326. }, [_szjkyStudentDeskIconInfo[i]])
  2327. }, _frag); //
  2328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2331. }
  2332. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2333. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2334. _content = $$("div", {
  2335. className: "U_MD_D_KO",
  2336. "onmousedown": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_x020201StudentDeskIconInfo[i]]),
  2340. "onclick": U.UF.C.closure(function (obj) {
  2341. //防止拖动图标即打开了桌面应用
  2342. U.MD.D.click(this, obj);
  2343. }, [_x020201StudentDeskIconInfo[i]])
  2344. }, _frag); //
  2345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2348. }
  2349. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2350. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2351. _content = $$("div", {
  2352. className: "U_MD_D_KO",
  2353. "onmousedown": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_SCNUETStudentDeskIconInfo[i]]),
  2357. "onclick": U.UF.C.closure(function (obj) {
  2358. //防止拖动图标即打开了桌面应用
  2359. U.MD.D.click(this, obj);
  2360. }, [_SCNUETStudentDeskIconInfo[i]])
  2361. }, _frag); //
  2362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2365. }
  2366. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2367. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2368. _content = $$("div", {
  2369. className: "U_MD_D_KO",
  2370. "onmousedown": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_dseiStudentDeskIconInfo[i]]),
  2374. "onclick": U.UF.C.closure(function (obj) {
  2375. //防止拖动图标即打开了桌面应用
  2376. U.MD.D.click(this, obj);
  2377. }, [_dseiStudentDeskIconInfo[i]])
  2378. }, _frag); //
  2379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2382. }
  2383. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2384. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2385. _content = $$("div", {
  2386. className: "U_MD_D_KO",
  2387. "onmousedown": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2391. "onclick": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2395. }, _frag); //
  2396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2399. }
  2400. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2401. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2402. _content = $$("div", {
  2403. className: "U_MD_D_KO",
  2404. "onmousedown": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_nsfxStudentDeskIconInfo[i]]),
  2408. "onclick": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_nsfxStudentDeskIconInfo[i]])
  2412. }, _frag); //
  2413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2416. }
  2417. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2418. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2419. _content = $$("div", {
  2420. className: "U_MD_D_KO",
  2421. "onmousedown": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_stiaStudentDeskIconInfo[i]]),
  2425. "onclick": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_stiaStudentDeskIconInfo[i]])
  2429. }, _frag); //
  2430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2433. }
  2434. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2435. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2436. _content = $$("div", {
  2437. className: "U_MD_D_KO",
  2438. "onmousedown": U.UF.C.closure(function (obj) {
  2439. //防止拖动图标即打开了桌面应用
  2440. U.MD.D.click(this, obj);
  2441. }, [_szdjgStudentDeskIconInfo[i]]),
  2442. "onclick": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_szdjgStudentDeskIconInfo[i]])
  2446. }, _frag); //
  2447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2450. }
  2451. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2452. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2453. _content = $$("div", {
  2454. className: "U_MD_D_KO",
  2455. "onmousedown": U.UF.C.closure(function (obj) {
  2456. //防止拖动图标即打开了桌面应用
  2457. U.MD.D.click(this, obj);
  2458. }, [_x010607StudentDeskIconInfo[i]]),
  2459. "onclick": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_x010607StudentDeskIconInfo[i]])
  2463. }, _frag); //
  2464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2467. }
  2468. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2469. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2470. _content = $$("div", {
  2471. className: "U_MD_D_KO",
  2472. "onmousedown": U.UF.C.closure(function (obj) {
  2473. //防止拖动图标即打开了桌面应用
  2474. U.MD.D.click(this, obj);
  2475. }, [_xhlyStudentDeskIconInfo[i]]),
  2476. "onclick": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_xhlyStudentDeskIconInfo[i]])
  2480. }, _frag); //
  2481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2484. }
  2485. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2486. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2503. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_x010503StudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_x010503StudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2518. }
  2519. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2520. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_x010504StudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_x010504StudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2535. }
  2536. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2537. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_x010204StudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_x010204StudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2554. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_x320101StudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_x320101StudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2571. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_trailStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_trailStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2588. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2605. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_x010608StudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_x010608StudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2620. }
  2621. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2622. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_x010611StudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_x010611StudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2639. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_tianyuantudentDeskIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_tianyuantudentDeskIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2656. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_siesStudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_siesStudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2673. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_guzmsStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_guzmsStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2690. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_hkStudentDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_hkStudentDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2707. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_hkaceStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_hkaceStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2724. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_BSDNSstudentDesktopIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2741. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_cocobizStudentDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_cocobizStudentDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2758. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_xxzjkyStudentDeskIconInfo[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2773. }
  2774. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2775. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_studentDesktopIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_studentDesktopIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2792. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_tcStudentDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_tcStudentDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2809. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_szscStudentDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_szscStudentDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2826. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_studentDesktopIconInfo3[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_studentDesktopIconInfo3[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2841. }
  2842. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2843. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_studentDesktopIconInfo2[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_studentDesktopIconInfo2[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2858. }
  2859. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2860. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2861. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2862. continue
  2863. }
  2864. _content = $$("div", {
  2865. className: "U_MD_D_KO",
  2866. "onmousedown": U.UF.C.closure(function (obj) {
  2867. //防止拖动图标即打开了桌面应用
  2868. U.MD.D.click(this, obj);
  2869. }, [_wanketeacherDesktopIconInfo[i]]),
  2870. "onclick": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_wanketeacherDesktopIconInfo[i]])
  2874. }, _frag); //
  2875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2878. }
  2879. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2880. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2881. _content = $$("div", {
  2882. className: "U_MD_D_KO",
  2883. "onmousedown": U.UF.C.closure(function (obj) {
  2884. //防止拖动图标即打开了桌面应用
  2885. U.MD.D.click(this, obj);
  2886. }, [_wankeAdminDesktopIconInfo[i]]),
  2887. "onclick": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_wankeAdminDesktopIconInfo[i]])
  2891. }, _frag); //
  2892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2895. }
  2896. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2897. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2898. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2899. continue
  2900. }
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_scnuaiTeacherDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2917. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2918. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2919. continue
  2920. }
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_BSDNSteacherDesktopIconInfo[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2935. }
  2936. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2937. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2938. _content = $$("div", {
  2939. className: "U_MD_D_KO",
  2940. "onmousedown": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_scnuaiAdminDeskIconInfo[i]]),
  2944. "onclick": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_scnuaiAdminDeskIconInfo[i]])
  2948. }, _frag); //
  2949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2952. }
  2953. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2954. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2955. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2956. continue
  2957. }
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_jccssylTeacherDeskIconInfo[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_jccssylTeacherDeskIconInfo[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2972. }
  2973. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2974. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2975. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2976. continue
  2977. }
  2978. _content = $$("div", {
  2979. className: "U_MD_D_KO",
  2980. "onmousedown": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_caleTeacherDeskIconInfo[i]]),
  2984. "onclick": U.UF.C.closure(function (obj) {
  2985. //防止拖动图标即打开了桌面应用
  2986. U.MD.D.click(this, obj);
  2987. }, [_caleTeacherDeskIconInfo[i]])
  2988. }, _frag); //
  2989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2992. }
  2993. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2994. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_tpcOrganizerDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_tpcOrganizerDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3009. }
  3010. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3011. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3012. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3013. continue
  3014. }
  3015. _content = $$("div", {
  3016. className: "U_MD_D_KO",
  3017. "onmousedown": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_tpcTeacherDeskIconInfo[i]]),
  3021. "onclick": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_tpcTeacherDeskIconInfo[i]])
  3025. }, _frag); //
  3026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3029. }
  3030. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3031. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3032. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3033. continue
  3034. }
  3035. _content = $$("div", {
  3036. className: "U_MD_D_KO",
  3037. "onmousedown": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_teacherDesktopIconInfo2[i]]),
  3041. "onclick": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_teacherDesktopIconInfo2[i]])
  3045. }, _frag); //
  3046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3049. }
  3050. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3051. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3052. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3053. continue
  3054. }
  3055. _content = $$("div", {
  3056. className: "U_MD_D_KO",
  3057. "onmousedown": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_thuioeTeacherDeskIconInfo[i]]),
  3061. "onclick": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_thuioeTeacherDeskIconInfo[i]])
  3065. }, _frag); //
  3066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3069. }
  3070. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3071. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3072. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3073. continue
  3074. }
  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. }, [_lotechTeacherDeskIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_lotechTeacherDeskIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3089. }//
  3090. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3091. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[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. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3111. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3112. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3113. continue
  3114. }
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_siesTeacherDeskIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_siesTeacherDeskIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3129. }
  3130. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3131. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3132. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3133. continue
  3134. }
  3135. _content = $$("div", {
  3136. className: "U_MD_D_KO",
  3137. "onmousedown": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_guzmsTeacherDeskIconInfo[i]]),
  3141. "onclick": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_guzmsTeacherDeskIconInfo[i]])
  3145. }, _frag); //
  3146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3149. }
  3150. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3151. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3152. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3153. continue
  3154. }
  3155. _content = $$("div", {
  3156. className: "U_MD_D_KO",
  3157. "onmousedown": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_longhuaTeacherDeskIconInfo[i]]),
  3161. "onclick": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_longhuaTeacherDeskIconInfo[i]])
  3165. }, _frag); //
  3166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3169. }
  3170. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3171. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3172. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3173. continue
  3174. }
  3175. _content = $$("div", {
  3176. className: "U_MD_D_KO",
  3177. "onmousedown": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_ytyTeacherDeskIconInfo[i]]),
  3181. "onclick": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_ytyTeacherDeskIconInfo[i]])
  3185. }, _frag); //
  3186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3189. }
  3190. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3191. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3192. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3193. continue
  3194. }
  3195. _content = $$("div", {
  3196. className: "U_MD_D_KO",
  3197. "onmousedown": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3201. "onclick": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_yunhaiTeacherDeskIconInfo[i]])
  3205. }, _frag); //
  3206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3209. } //_hkStudentDeskIconInfo
  3210. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3211. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3212. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3213. continue
  3214. }
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3229. }
  3230. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3231. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3232. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3233. continue
  3234. }
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_hkTeacherDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_hkTeacherDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3251. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3252. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3253. continue
  3254. }
  3255. _content = $$("div", {
  3256. className: "U_MD_D_KO",
  3257. "onmousedown": U.UF.C.closure(function (obj) {
  3258. //防止拖动图标即打开了桌面应用
  3259. U.MD.D.click(this, obj);
  3260. }, [_hkaceTeacherDeskIconInfo[i]]),
  3261. "onclick": U.UF.C.closure(function (obj) {
  3262. //防止拖动图标即打开了桌面应用
  3263. U.MD.D.click(this, obj);
  3264. }, [_hkaceTeacherDeskIconInfo[i]])
  3265. }, _frag); //
  3266. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3267. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3268. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3269. }
  3270. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3271. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3272. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3273. continue
  3274. }
  3275. _content = $$("div", {
  3276. className: "U_MD_D_KO",
  3277. "onmousedown": U.UF.C.closure(function (obj) {
  3278. //防止拖动图标即打开了桌面应用
  3279. U.MD.D.click(this, obj);
  3280. }, [_cocobizTeacherDeskIconInfo[i]]),
  3281. "onclick": U.UF.C.closure(function (obj) {
  3282. //防止拖动图标即打开了桌面应用
  3283. U.MD.D.click(this, obj);
  3284. }, [_cocobizTeacherDeskIconInfo[i]])
  3285. }, _frag); //
  3286. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3287. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3288. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3289. }
  3290. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3291. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3292. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3293. continue
  3294. }
  3295. _content = $$("div", {
  3296. className: "U_MD_D_KO",
  3297. "onmousedown": U.UF.C.closure(function (obj) {
  3298. //防止拖动图标即打开了桌面应用
  3299. U.MD.D.click(this, obj);
  3300. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3301. "onclick": U.UF.C.closure(function (obj) {
  3302. //防止拖动图标即打开了桌面应用
  3303. U.MD.D.click(this, obj);
  3304. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3305. }, _frag); //
  3306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3309. }
  3310. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3311. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3312. _content = $$("div", {
  3313. className: "U_MD_D_KO",
  3314. "onmousedown": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_gdjgAdminDeskIconInfo[i]]),
  3318. "onclick": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_gdjgAdminDeskIconInfo[i]])
  3322. }, _frag); //
  3323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3326. }
  3327. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3328. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3329. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3330. continue
  3331. }
  3332. _content = $$("div", {
  3333. className: "U_MD_D_KO",
  3334. "onmousedown": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_gdjgTeacherDeskIconInfo[i]]),
  3338. "onclick": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_gdjgTeacherDeskIconInfo[i]])
  3342. }, _frag); //
  3343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3346. }
  3347. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3348. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3349. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3350. continue
  3351. }
  3352. _content = $$("div", {
  3353. className: "U_MD_D_KO",
  3354. "onmousedown": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_szherTeacherDeskIconInfo[i]]),
  3358. "onclick": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_szherTeacherDeskIconInfo[i]])
  3362. }, _frag); //
  3363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3366. }
  3367. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3368. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_heyuannAdminDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_heyuannAdminDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3385. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_heyuanTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_heyuanTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. } //
  3404. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3405. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  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. }, [_dseiAdminDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖动图标即打开了桌面应用
  3414. U.MD.D.click(this, obj);
  3415. }, [_dseiAdminDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3420. }
  3421. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3422. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3423. if(_role === 0 && _dseiTeacherDeskIconInfo[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. }, [_dseiTeacherDeskIconInfo[i]]),
  3432. "onclick": U.UF.C.closure(function (obj) {
  3433. //防止拖动图标即打开了桌面应用
  3434. U.MD.D.click(this, obj);
  3435. }, [_dseiTeacherDeskIconInfo[i]])
  3436. }, _frag); //
  3437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3440. } //
  3441. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3442. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3443. _content = $$("div", {
  3444. className: "U_MD_D_KO",
  3445. "onmousedown": U.UF.C.closure(function (obj) {
  3446. //防止拖动图标即打开了桌面应用
  3447. U.MD.D.click(this, obj);
  3448. }, [_chjyjAdminDeskIconInfo[i]]),
  3449. "onclick": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_chjyjAdminDeskIconInfo[i]])
  3453. }, _frag); //
  3454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3457. }//
  3458. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3459. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3460. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3461. continue
  3462. }
  3463. _content = $$("div", {
  3464. className: "U_MD_D_KO",
  3465. "onmousedown": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_chjyjTeacherDeskIconInfo[i]]),
  3469. "onclick": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_chjyjTeacherDeskIconInfo[i]])
  3473. }, _frag); //
  3474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3477. }
  3478. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3479. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3480. _content = $$("div", {
  3481. className: "U_MD_D_KO",
  3482. "onmousedown": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_szjkyAdminDeskIconInfo[i]]),
  3486. "onclick": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_szjkyAdminDeskIconInfo[i]])
  3490. }, _frag); //
  3491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3494. }//
  3495. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3496. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3497. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3498. continue
  3499. }
  3500. _content = $$("div", {
  3501. className: "U_MD_D_KO",
  3502. "onmousedown": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_szjkyTeacherDeskIconInfo[i]]),
  3506. "onclick": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_szjkyTeacherDeskIconInfo[i]])
  3510. }, _frag); //
  3511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3514. }
  3515. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3516. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_x020201AdminDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_x020201AdminDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3531. }//
  3532. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3533. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3534. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3535. continue
  3536. }
  3537. _content = $$("div", {
  3538. className: "U_MD_D_KO",
  3539. "onmousedown": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_x020201TeacherDeskIconInfo[i]]),
  3543. "onclick": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_x020201TeacherDeskIconInfo[i]])
  3547. }, _frag); //
  3548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3551. }
  3552. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3553. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3554. _content = $$("div", {
  3555. className: "U_MD_D_KO",
  3556. "onmousedown": U.UF.C.closure(function (obj) {
  3557. //防止拖动图标即打开了桌面应用
  3558. U.MD.D.click(this, obj);
  3559. }, [_SCNUETAdminDeskIconInfo[i]]),
  3560. "onclick": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_SCNUETAdminDeskIconInfo[i]])
  3564. }, _frag); //
  3565. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3566. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3567. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3568. }//
  3569. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3570. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3571. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3572. continue
  3573. }
  3574. _content = $$("div", {
  3575. className: "U_MD_D_KO",
  3576. "onmousedown": U.UF.C.closure(function (obj) {
  3577. //防止拖动图标即打开了桌面应用
  3578. U.MD.D.click(this, obj);
  3579. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3580. "onclick": U.UF.C.closure(function (obj) {
  3581. //防止拖动图标即打开了桌面应用
  3582. U.MD.D.click(this, obj);
  3583. }, [_SCNUETTeacherDeskIconInfo[i]])
  3584. }, _frag); //
  3585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3588. }
  3589. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3590. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3591. _content = $$("div", {
  3592. className: "U_MD_D_KO",
  3593. "onmousedown": U.UF.C.closure(function (obj) {
  3594. //防止拖动图标即打开了桌面应用
  3595. U.MD.D.click(this, obj);
  3596. }, [_futianAdminDeskIconInfo[i]]),
  3597. "onclick": U.UF.C.closure(function (obj) {
  3598. //防止拖动图标即打开了桌面应用
  3599. U.MD.D.click(this, obj);
  3600. }, [_futianAdminDeskIconInfo[i]])
  3601. }, _frag); //
  3602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3605. }
  3606. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3607. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3608. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3609. continue
  3610. }
  3611. _content = $$("div", {
  3612. className: "U_MD_D_KO",
  3613. "onmousedown": U.UF.C.closure(function (obj) {
  3614. //防止拖动图标即打开了桌面应用
  3615. U.MD.D.click(this, obj);
  3616. }, [_futianTeacherDeskIconInfo[i]]),
  3617. "onclick": U.UF.C.closure(function (obj) {
  3618. //防止拖动图标即打开了桌面应用
  3619. U.MD.D.click(this, obj);
  3620. }, [_futianTeacherDeskIconInfo[i]])
  3621. }, _frag); //
  3622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3625. }
  3626. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3627. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3628. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3629. continue
  3630. }
  3631. _content = $$("div", {
  3632. className: "U_MD_D_KO",
  3633. "onmousedown": U.UF.C.closure(function (obj) {
  3634. //防止拖动图标即打开了桌面应用
  3635. U.MD.D.click(this, obj);
  3636. }, [_MingdeTeacherDeskIcon[i]]),
  3637. "onclick": U.UF.C.closure(function (obj) {
  3638. //防止拖动图标即打开了桌面应用
  3639. U.MD.D.click(this, obj);
  3640. }, [_MingdeTeacherDeskIcon[i]])
  3641. }, _frag); //
  3642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3645. }
  3646. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3647. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_lhsAdminDesktopIconInfo[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_lhsAdminDesktopIconInfo[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3662. }
  3663. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3664. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3665. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_lhsteacherDesktopIconInfo[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_lhsteacherDesktopIconInfo[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3684. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3685. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3686. continue
  3687. }
  3688. _content = $$("div", {
  3689. className: "U_MD_D_KO",
  3690. "onmousedown": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3694. "onclick": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_zhoujiateacherDesktopIconInfo[i]])
  3698. }, _frag); //
  3699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3702. }
  3703. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3704. for (i = 0; i < _hanDeskIcon.length; i++) {
  3705. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3706. continue
  3707. }
  3708. _content = $$("div", {
  3709. className: "U_MD_D_KO",
  3710. "onmousedown": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_hanDeskIcon[i]]),
  3714. "onclick": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_hanDeskIcon[i]])
  3718. }, _frag); //
  3719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3722. }
  3723. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3724. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3725. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3726. continue
  3727. }
  3728. _content = $$("div", {
  3729. className: "U_MD_D_KO",
  3730. "onmousedown": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_orgStemDeskIcon[i]]),
  3734. "onclick": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_orgStemDeskIcon[i]])
  3738. }, _frag); //
  3739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3742. }
  3743. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3744. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3745. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3746. continue
  3747. }
  3748. _content = $$("div", {
  3749. className: "U_MD_D_KO",
  3750. "onmousedown": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_szulsDeskIcon[i]]),
  3754. "onclick": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_szulsDeskIcon[i]])
  3758. }, _frag); //
  3759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3762. }
  3763. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3764. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3765. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3766. continue
  3767. }
  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. }, [_orgDesktopIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_orgDesktopIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3782. }
  3783. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3784. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3785. if(_role === 0 && _schoolDesktopIconInfo[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. }, [_schoolDesktopIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_schoolDesktopIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3804. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3805. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3806. continue
  3807. }
  3808. _content = $$("div", {
  3809. className: "U_MD_D_KO",
  3810. "onmousedown": U.UF.C.closure(function (obj) {
  3811. //防止拖动图标即打开了桌面应用
  3812. U.MD.D.click(this, obj);
  3813. }, [_GMteacherDesktopIconInfo[i]]),
  3814. "onclick": U.UF.C.closure(function (obj) {
  3815. //防止拖动图标即打开了桌面应用
  3816. U.MD.D.click(this, obj);
  3817. }, [_GMteacherDesktopIconInfo[i]])
  3818. }, _frag); //
  3819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3822. }
  3823. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3824. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3825. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3826. continue
  3827. }
  3828. _content = $$("div", {
  3829. className: "U_MD_D_KO",
  3830. "onmousedown": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_SONGteacherDesktopIconInfo[i]]),
  3834. "onclick": U.UF.C.closure(function (obj) {
  3835. //防止拖动图标即打开了桌面应用
  3836. U.MD.D.click(this, obj);
  3837. }, [_SONGteacherDesktopIconInfo[i]])
  3838. }, _frag); //
  3839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3842. }
  3843. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3844. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_GMstudentDesktopIconInfo[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_GMstudentDesktopIconInfo[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3861. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3862. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3863. continue
  3864. }
  3865. _content = $$("div", {
  3866. className: "U_MD_D_KO",
  3867. "onmousedown": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_tcTeacherDeskIconInfo[i]]),
  3871. "onclick": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_tcTeacherDeskIconInfo[i]])
  3875. }, _frag); //
  3876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3879. }
  3880. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3881. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3882. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3883. continue
  3884. }
  3885. _content = $$("div", {
  3886. className: "U_MD_D_KO",
  3887. "onmousedown": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_tcOrganizerDeskIconInfo[i]]),
  3891. "onclick": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_tcOrganizerDeskIconInfo[i]])
  3895. }, _frag); //
  3896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3899. }
  3900. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3901. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3902. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3903. continue
  3904. }
  3905. _content = $$("div", {
  3906. className: "U_MD_D_KO",
  3907. "onmousedown": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szscTeacherDeskIconInfo[i]]),
  3911. "onclick": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_szscTeacherDeskIconInfo[i]])
  3915. }, _frag); //
  3916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3919. }
  3920. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3921. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3922. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3923. continue
  3924. }
  3925. _content = $$("div", {
  3926. className: "U_MD_D_KO",
  3927. "onmousedown": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_szscOrganizerDeskIconInfo[i]]),
  3931. "onclick": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_szscOrganizerDeskIconInfo[i]])
  3935. }, _frag); //
  3936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3939. }
  3940. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3941. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3942. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3943. continue
  3944. }
  3945. _content = $$("div", {
  3946. className: "U_MD_D_KO",
  3947. "onmousedown": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_nsfxTeacherDeskIconInfo[i]]),
  3951. "onclick": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_nsfxTeacherDeskIconInfo[i]])
  3955. }, _frag); //
  3956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3959. }
  3960. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3961. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3962. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3963. continue
  3964. }
  3965. _content = $$("div", {
  3966. className: "U_MD_D_KO",
  3967. "onmousedown": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_stiaTeacherDeskIconInfo[i]]),
  3971. "onclick": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_stiaTeacherDeskIconInfo[i]])
  3975. }, _frag); //
  3976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3979. }
  3980. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3981. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3982. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3983. continue
  3984. }
  3985. _content = $$("div", {
  3986. className: "U_MD_D_KO",
  3987. "onmousedown": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_szdjgTeacherDeskIconInfo[i]]),
  3991. "onclick": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_szdjgTeacherDeskIconInfo[i]])
  3995. }, _frag); //
  3996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3999. }
  4000. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4001. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4002. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4003. continue
  4004. }
  4005. _content = $$("div", {
  4006. className: "U_MD_D_KO",
  4007. "onmousedown": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_x010607TeacherDeskIconInfo[i]]),
  4011. "onclick": U.UF.C.closure(function (obj) {
  4012. //防止拖动图标即打开了桌面应用
  4013. U.MD.D.click(this, obj);
  4014. }, [_x010607TeacherDeskIconInfo[i]])
  4015. }, _frag); //
  4016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4019. }
  4020. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4021. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4022. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4023. continue
  4024. }
  4025. _content = $$("div", {
  4026. className: "U_MD_D_KO",
  4027. "onmousedown": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_xhlyTeacherDeskIconInfo[i]]),
  4031. "onclick": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_xhlyTeacherDeskIconInfo[i]])
  4035. }, _frag); //
  4036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4039. }
  4040. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4041. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4042. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4043. continue
  4044. }
  4045. _content = $$("div", {
  4046. className: "U_MD_D_KO",
  4047. "onmousedown": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4051. "onclick": U.UF.C.closure(function (obj) {
  4052. //防止拖动图标即打开了桌面应用
  4053. U.MD.D.click(this, obj);
  4054. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4055. }, _frag); //
  4056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4059. }
  4060. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4061. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4062. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4063. continue
  4064. }
  4065. _content = $$("div", {
  4066. className: "U_MD_D_KO",
  4067. "onmousedown": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_x010503TeacherDeskIconInfo[i]]),
  4071. "onclick": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_x010503TeacherDeskIconInfo[i]])
  4075. }, _frag); //
  4076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4079. }
  4080. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4081. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4082. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4083. continue
  4084. }
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_x010504TeacherDeskIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_x010504TeacherDeskIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4101. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4102. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_x010204TeacherDeskIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_x010204TeacherDeskIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4121. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4122. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_x320101TeacherDeskIconInfo[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_x320101TeacherDeskIconInfo[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4139. }
  4140. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4141. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4142. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4143. continue
  4144. }
  4145. _content = $$("div", {
  4146. className: "U_MD_D_KO",
  4147. "onmousedown": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_trailTeacherDeskIconInfo[i]]),
  4151. "onclick": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_trailTeacherDeskIconInfo[i]])
  4155. }, _frag); //
  4156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4159. }
  4160. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4161. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4162. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4163. continue
  4164. }
  4165. _content = $$("div", {
  4166. className: "U_MD_D_KO",
  4167. "onmousedown": U.UF.C.closure(function (obj) {
  4168. //防止拖动图标即打开了桌面应用
  4169. U.MD.D.click(this, obj);
  4170. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4171. "onclick": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4175. }, _frag); //
  4176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4179. }
  4180. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4181. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4182. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4183. continue
  4184. }
  4185. _content = $$("div", {
  4186. className: "U_MD_D_KO",
  4187. "onmousedown": U.UF.C.closure(function (obj) {
  4188. //防止拖动图标即打开了桌面应用
  4189. U.MD.D.click(this, obj);
  4190. }, [_x010608TeacherDeskIconInfo[i]]),
  4191. "onclick": U.UF.C.closure(function (obj) {
  4192. //防止拖动图标即打开了桌面应用
  4193. U.MD.D.click(this, obj);
  4194. }, [_x010608TeacherDeskIconInfo[i]])
  4195. }, _frag); //
  4196. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4197. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4198. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4199. }
  4200. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4201. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4202. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4203. continue
  4204. }
  4205. _content = $$("div", {
  4206. className: "U_MD_D_KO",
  4207. "onmousedown": U.UF.C.closure(function (obj) {
  4208. //防止拖动图标即打开了桌面应用
  4209. U.MD.D.click(this, obj);
  4210. }, [_x010611TeacherDeskIconInfo[i]]),
  4211. "onclick": U.UF.C.closure(function (obj) {
  4212. //防止拖动图标即打开了桌面应用
  4213. U.MD.D.click(this, obj);
  4214. }, [_x010611TeacherDeskIconInfo[i]])
  4215. }, _frag); //
  4216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4219. }
  4220. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4221. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4222. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4223. continue
  4224. }
  4225. _content = $$("div", {
  4226. className: "U_MD_D_KO",
  4227. "onmousedown": U.UF.C.closure(function (obj) {
  4228. //防止拖动图标即打开了桌面应用
  4229. U.MD.D.click(this, obj);
  4230. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4231. "onclick": U.UF.C.closure(function (obj) {
  4232. //防止拖动图标即打开了桌面应用
  4233. U.MD.D.click(this, obj);
  4234. }, [_tianyuanTeacherDeskIconInfo[i]])
  4235. }, _frag); //
  4236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4239. }
  4240. } else {
  4241. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4242. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4243. continue
  4244. }
  4245. _content = $$("div", {
  4246. className: "U_MD_D_KO",
  4247. "onmousedown": U.UF.C.closure(function (obj) {
  4248. //防止拖动图标即打开了桌面应用
  4249. U.MD.D.click(this, obj);
  4250. }, [_teacherDesktopIconInfo[i]]),
  4251. "onclick": U.UF.C.closure(function (obj) {
  4252. //防止拖动图标即打开了桌面应用
  4253. U.MD.D.click(this, obj);
  4254. }, [_teacherDesktopIconInfo[i]])
  4255. }, _frag); //
  4256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4259. }
  4260. }
  4261. } else {
  4262. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4263. _content = $$("div", {
  4264. className: "U_MD_D_KO",
  4265. style: { 'width': '124px', 'height': '145px' },
  4266. "onmousedown": U.UF.C.closure(function (obj) {
  4267. //防止拖动图标即打开了桌面应用
  4268. U.MD.D.click(this, obj);
  4269. }, [_easyDesktopIconInfo[i]]),
  4270. "onclick": U.UF.C.closure(function (obj) {
  4271. //防止拖动图标即打开了桌面应用
  4272. U.MD.D.click(this, obj);
  4273. }, [_easyDesktopIconInfo[i]])
  4274. }, _frag); //
  4275. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4278. }
  4279. }
  4280. if (type == 1) {
  4281. //加载好后给图标定位
  4282. U.MD.D.iconPostion($(_frag).Child());
  4283. } else {
  4284. //加载好后给图标定位
  4285. U.MD.D.iconPostion2($(_frag).Child());
  4286. }
  4287. //把图标加载到页面
  4288. el.appendChild(_frag);
  4289. }
  4290. /**
  4291. * 显示任务栏
  4292. *
  4293. * @param {element} 桌面元素
  4294. */
  4295. U.MD.D.I.displayTaskbar = function (el) {
  4296. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4297. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4298. //任务栏位置变化
  4299. U.selectEl(el).css({ "bottom": "0px" });
  4300. //桌面位置变话
  4301. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4302. }
  4303. }
  4304. //#region 桌面图标拖动逻辑
  4305. /**
  4306. * 桌面排列图标
  4307. *
  4308. * @param {element} 桌面元素
  4309. * @param {object} 上下相距的距离
  4310. * @param {object} 左右相距的距离
  4311. * @return {object} 命名空间
  4312. */
  4313. U.MD.D.iconPostion = function (childs, top, left) {
  4314. var i; //用于循环处理
  4315. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4316. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4317. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4318. for (i = 0; i < childs.length; i++) {
  4319. //如果竖排top超过了范围处理
  4320. if (top + 95 > US.height - 10) {
  4321. //left超过了页面范围处理,则向上重叠打印处理
  4322. if ((left + 180) > US.width) {
  4323. top -= 110;
  4324. left -= 90;
  4325. }
  4326. //没有超过范围,那么left+90添加到下一个竖排打印
  4327. else {
  4328. left += 90;
  4329. top = 15;
  4330. };
  4331. }
  4332. //给图标的位置赋值
  4333. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4334. if (i < childs.length - 1) {
  4335. //页面图标每次向下加95
  4336. top += 95;
  4337. }
  4338. }
  4339. //返回最后调用的图标的位置
  4340. return [top, left];
  4341. }
  4342. /**
  4343. * 桌面排列图标
  4344. *
  4345. * @param {element} 桌面元素
  4346. * @param {object} 上下相距的距离
  4347. * @param {object} 左右相距的距离
  4348. * @return {object} 命名空间
  4349. */
  4350. U.MD.D.iconPostion2 = function (childs, top, left) {
  4351. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4352. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4353. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4354. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4355. for (i = 0; i < childs.length; i++) {
  4356. //如果竖排top超过了范围处理
  4357. if (left + 150 > US.width - 10) {
  4358. //left超过了页面范围处理,则向上重叠打印处理
  4359. if ((top + 180) > US.Height) {
  4360. top -= 150;
  4361. left -= 150;
  4362. }
  4363. //没有超过范围,那么left+90添加到下一个竖排打印
  4364. else {
  4365. top += 150;
  4366. left = ol;
  4367. };
  4368. }
  4369. //给图标的位置赋值
  4370. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4371. if (i < childs.length - 1) {
  4372. //页面图标每次向下加95
  4373. left += 150;
  4374. }
  4375. }
  4376. //返回最后调用的图标的位置
  4377. return [top, left];
  4378. }
  4379. /**
  4380. * 桌面点击事件逻辑
  4381. *
  4382. * @param {element} 桌面元素
  4383. * @param {object} 上下相距的距离
  4384. * @param {object} 左右相距的距离
  4385. * @return {object} 命名空间
  4386. */
  4387. U.MD.D.click = function (el, obj) {
  4388. var _buttonnumber = event.button; //点击的按钮的事件值
  4389. var _userinfo = US.userInfo;
  4390. U.UF.EV.stopBubble(); //阻止向上冒泡
  4391. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4392. if (_buttonnumber < 2) {
  4393. //如果是click事件的处理
  4394. if (event.type == "click") {
  4395. //如果元素在mousemove事件中没有移动则出发click事件
  4396. if (!U.MD.D.I.IsDrag) {
  4397. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4398. U.alert("请先登录您的账号!");
  4399. setTimeout(() => {
  4400. U.MD.U.L.login();
  4401. }, 2000);
  4402. } else {
  4403. //打开应用处理
  4404. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4405. }
  4406. }
  4407. }
  4408. //如果是mouse事件的处理
  4409. else {
  4410. if (US.Config.type == '1') {
  4411. //拖动处理,添加拖动和拖动结束事件
  4412. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4413. }
  4414. }
  4415. U.MD.D.I.IsDrag = false;
  4416. }
  4417. }
  4418. /**
  4419. * 拖动的处理
  4420. *
  4421. */
  4422. U.MD.D.iconMove = function () {
  4423. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4424. U.MD.D.I.IsDrag = true;
  4425. }
  4426. /**
  4427. * 拖动结束后,这里是定位处理,以网状的形式定位
  4428. *
  4429. * @param {element} 拖动的元素
  4430. * @return {object} 命名空间
  4431. */
  4432. U.MD.D.iconUp = function (el) {
  4433. var _top = 15,
  4434. _left = 20,
  4435. _margin,
  4436. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4437. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4438. if (_positioninfo["OT"] > 15) {
  4439. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4440. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4441. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4442. }
  4443. if (_positioninfo["OL"] > 20) {
  4444. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4445. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4446. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4447. }
  4448. //while循环判断么一个重叠的元素
  4449. do {
  4450. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4451. _top = _positioninfo[0] + 95; //得到定位后的top
  4452. _left = _positioninfo[1]; //得到定位后的left
  4453. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4454. }
  4455. /**
  4456. * 判断拖动后图标是否重叠
  4457. *
  4458. * @param {element} 拖动的元素
  4459. * @param {element} 桌面所有的元素
  4460. * @param {array} 拖动元素的位置
  4461. ----------[0] 上 top
  4462. ----------[1] 左 left
  4463. * @return {object} 命名空间
  4464. */
  4465. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4466. //循环所有的图标
  4467. for (var i = 0; i < childs.length; i++) {
  4468. //判断有没有和该图标诶子重叠的元素
  4469. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4470. return childs[i]; //如果有返回
  4471. }
  4472. }
  4473. }
  4474. //#endregion
  4475. //#endregion
  4476. //#region 桌面应用
  4477. /**
  4478. * 打开应用
  4479. *
  4480. * @param {string} 类型
  4481. -----------------Disk 网盘系统
  4482. -----------------PDisk 学习系统网盘
  4483. -----------------Poto 图片
  4484. -----------------Video 视频
  4485. -----------------Music 音乐
  4486. -----------------Word word
  4487. -----------------Excel excel
  4488. -----------------Txt 记事本
  4489. -----------------PB 学习系统
  4490. -----------------Blog 朋友圈系统
  4491. -----------------FTP ftp系统
  4492. -----------------Group 好友群
  4493. -----------------SY 首页系统
  4494. -----------------Set 个人设置
  4495. -----------------XSet 系统设置
  4496. -----------------App 我们所有的app
  4497. -----------------BC c.1473.cn 平台
  4498. -----------------CWeb d.1473.cn 变成平台
  4499. -----------------其他的外联系统 我们统一用iframe打开
  4500. * @param {array} 类型
  4501. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4502. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4503. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4504. 如果第一个参数为其他,则无第二个参数
  4505. * @returns {array}
  4506. */
  4507. window.addEventListener('message', function (e) { // 监听 message 事件
  4508. // alert(e.data.type);
  4509. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4510. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4511. //3是展示全部阶段 2学生 1老师 4专家
  4512. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4513. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4514. //3是展示全部阶段 2学生 1老师 4专家
  4515. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4516. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4517. //3是展示全部阶段 2学生 1老师 4专家
  4518. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4519. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4520. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4521. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4522. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4523. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4524. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4525. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4526. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4527. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4528. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4529. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4530. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4531. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4532. //3是展示全部阶段 2学生 1老师 4专家
  4533. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4534. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4535. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4536. U.MD.D.I.selectUser();
  4537. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4538. var _formel = document.getElementById("study");
  4539. U.UF.F.windowZooming(_formel);
  4540. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4541. var _formel = document.getElementById("studyDetail");
  4542. U.UF.F.windowZooming(_formel);
  4543. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4544. var _formel = document.getElementById("studyDetail");
  4545. U.UF.F.windowZooming(_formel);
  4546. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4547. var _formel = document.getElementById("studentStudy");
  4548. U.UF.F.windowZooming(_formel);
  4549. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4550. // var _formel = document.getElementById("study");
  4551. //如果最大化了,那么就把他缩小
  4552. // if (_formel.ismaximize) {
  4553. // return;
  4554. // }
  4555. // U.UF.F.windowZooming(_formel);
  4556. // U.UF.F.topWindow(_formel);
  4557. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4558. // var _formel = document.getElementById("studyDetail");
  4559. //如果最大化了,那么就把他缩小
  4560. // if (_formel.ismaximize) {
  4561. // return;
  4562. // }
  4563. // U.UF.F.windowZooming(_formel);
  4564. // U.UF.F.topWindow(_formel);
  4565. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4566. // var _formel = document.getElementById("studentStudy");
  4567. // if (_formel.ismaximize) {
  4568. // return;
  4569. // }
  4570. // U.UF.F.windowZooming(_formel);
  4571. // U.UF.F.topWindow(_formel);
  4572. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4573. var _formel = document.getElementById("study");
  4574. // if (_formel.ismaximize) {
  4575. // return;
  4576. // }
  4577. // U.UF.F.windowZooming(_formel);
  4578. U.UF.F.topWindow(_formel);
  4579. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4580. var _formel = document.getElementById("studentIndex");
  4581. U.UF.F.windowZooming(_formel);
  4582. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4583. var _formel = document.getElementById("studyDetailS");
  4584. U.UF.F.windowZooming(_formel);
  4585. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4586. var _formel = document.getElementById("studioIndex");
  4587. U.UF.F.windowZooming(_formel);
  4588. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4589. var _formel = document.getElementById("studyDetailStudio");
  4590. U.UF.F.windowZooming(_formel);
  4591. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4592. var _formel = document.getElementById("studyDetailStudio");
  4593. U.UF.F.windowZooming(_formel);
  4594. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4595. var _formel = document.getElementById("studyDetailNT");
  4596. U.UF.F.windowZooming(_formel);
  4597. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4598. var _formel = document.getElementById("studyDetailS");
  4599. U.UF.F.windowZooming(_formel);
  4600. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4601. var _formel = document.getElementById("studyDetailS");
  4602. U.UF.F.topWindow(_formel);
  4603. } else if (e.data.tools && e.data.tools == "1") {
  4604. // U.MD.D.I.openApplication("whiteboard")
  4605. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4606. } else if (e.data.tools && e.data.tools == "2") {
  4607. U.MD.D.I.openApplication("note")
  4608. } else if (e.data.tools && e.data.tools == "3") {
  4609. // U.MD.D.I.openApplication("mind")
  4610. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4611. } else if (e.data.tools && e.data.tools == "4") {
  4612. U.MD.D.I.openApplication("investigation")
  4613. } else if (e.data.tools && e.data.tools == "6") {
  4614. // U.MD.D.I.openApplication("doc")
  4615. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4616. } else if (e.data.tools && e.data.tools == "7") {
  4617. // U.MD.D.I.openApplication("mindNetwork")
  4618. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4619. } else if (e.data.tools && e.data.tools == "8") {
  4620. U.MD.D.I.openApplication("library")
  4621. } else if (e.data.tools && e.data.tools == "17") {
  4622. U.MD.D.I.openApplication("stuLibrary")
  4623. } else if (e.data.tools && e.data.tools == "18") {
  4624. U.MD.D.I.openApplication("train")
  4625. } else if (e.data.tools && e.data.tools == "21") {
  4626. U.MD.D.I.openApplication("program")
  4627. } else if (e.data.tools && e.data.tools == "22") {
  4628. U.MD.D.I.openApplication("AIprogram2")
  4629. } else if (e.data.tools && e.data.tools == "23") {
  4630. U.MD.D.I.openApplication("Pythonprogram")
  4631. } else if (e.data.tools && e.data.tools == "24") {
  4632. U.MD.D.I.openApplication("AIprogram")
  4633. } else if (e.data.tools && e.data.tools == "25") {
  4634. U.MD.D.I.openApplication("sys")
  4635. } else if (e.data.tools && e.data.tools == "26") {
  4636. // U.MD.D.I.openApplication("courseDesign")
  4637. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4638. } else if (e.data.tools && e.data.tools == "31") {
  4639. U.MD.D.I.openApplication("netWorkPanel")
  4640. } else if (e.data.tools && e.data.tools == "32") {
  4641. U.MD.D.I.openApplication("codeEdit")
  4642. } else if (e.data.tools && e.data.tools == "57") {
  4643. U.MD.D.I.openApplication("CocoPi")
  4644. } else if (e.data.tools && e.data.tools == "63") {
  4645. U.MD.D.I.openApplication("Wood")
  4646. } else if (e.data.tools && e.data.tools == "58") {
  4647. U.MD.D.I.openApplication("car")
  4648. } else if (e.data.tools && e.data.tools == "59") {
  4649. U.MD.D.I.openApplication("lineSearch")
  4650. } else if (e.data.tools && e.data.tools == "60") {
  4651. U.MD.D.I.openApplication("deepLearning")
  4652. } else if (e.data.tools && e.data.tools == "61") {
  4653. U.MD.D.I.openApplication("allHistory")
  4654. } else if (e.data.tools && e.data.tools == "28") {
  4655. U.MD.D.I.openApplication("translation")
  4656. } else if (e.data.tools && e.data.tools == "37") {
  4657. U.MD.D.I.openApplication("mohe")
  4658. } else if (e.data.tools && e.data.tools == "38") {
  4659. U.MD.D.I.openApplication("24game")
  4660. } else if (e.data.tools && e.data.tools == "39") {
  4661. U.MD.D.I.openApplication("GeoGebra")
  4662. } else if (e.data.tools && e.data.tools == "43") {
  4663. U.MD.D.I.openApplication("studentEvaluate")
  4664. } else if (e.data.tools && e.data.tools == "44") {
  4665. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4666. } else if (e.data.tools && e.data.tools == "46") {
  4667. U.MD.D.I.openApplication("project")
  4668. } else if (e.data.tools && e.data.tools == "71") {
  4669. U.MD.D.I.openApplication("aigptCourse")
  4670. } else if (e.data.tools && e.data.tools == "1s") {
  4671. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4672. } else if (e.data.tools && e.data.tools == "3s") {
  4673. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4674. } else if (e.data.tools && e.data.tools == "6s") {
  4675. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4676. } else if (e.data.tools && e.data.tools == "1studio") {
  4677. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4678. } else if (e.data.tools && e.data.tools == "3studio") {
  4679. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4680. } else if (e.data.tools && e.data.tools == "6studio") {
  4681. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4682. } else if (e.data.tools && e.data.tools == "3y") {
  4683. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4684. } else if (e.data.tools && e.data.tools == "1y") {
  4685. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4686. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4687. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4688. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4689. U.MD.D.I.openApplication("AIAnalyse")
  4690. } else if (e.data.tools && e.data.tools == "1teacher") {
  4691. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4692. } else if (e.data.tools && e.data.tools == "3teacher") {
  4693. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4694. } else if (e.data.tools && e.data.tools == "7teacher") {
  4695. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4696. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4697. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4698. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4699. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4700. } else if (e.data.tools && e.data.tools == "1E") {
  4701. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4702. } else if (e.data.tools && e.data.tools == "3E") {
  4703. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4704. } else if (e.data.tools && e.data.tools == "57y") {
  4705. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4706. } else if (e.data.tools && e.data.tools == "57u") {
  4707. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4708. } else if (e.data.tools && e.data.tools == "57teacher") {
  4709. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4710. } else if (e.data.tools && e.data.tools == "64") {
  4711. U.MD.D.I.openApplication("AIChat")
  4712. } else if (e.data.tools && e.data.tools == "66") {
  4713. U.MD.D.I.openApplication("formulaEdi")
  4714. } else if (e.data.tools && e.data.tools == "67") {
  4715. U.MD.D.I.openApplication("molStr")
  4716. } else if (e.data.tools && e.data.tools == "68") {
  4717. U.MD.D.I.openApplication("timeAxis")
  4718. } else if (e.data.tools && e.data.tools == "openCourse") {
  4719. let _data = {
  4720. typea: e.data.typea || '',
  4721. typeb: e.data.typeb || '',
  4722. typed: e.data.typed || '',
  4723. }
  4724. U.MD.D.I.openInApplication("index", _data)
  4725. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4726. let _data = {
  4727. classid: e.data.classid || '',
  4728. }
  4729. U.MD.D.I.openInApplication("dataClass", _data)
  4730. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4731. let _data = {
  4732. cid: e.data.cid || '',
  4733. gid: e.data.gid || '',
  4734. }
  4735. U.MD.D.I.openInApplication("opencCscl", _data)
  4736. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4737. U.MD.D.I.openApplication("dataBoardTest")
  4738. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4739. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4740. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4741. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4742. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4743. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4744. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4745. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4746. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4747. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4748. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4749. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4750. }else if (e.data.tools && e.data.tools == "loginSz") {
  4751. U.MD.D.I.openInApplication("loginSz")
  4752. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4753. if($('#classroom_observation_board')[0]){
  4754. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4755. }
  4756. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4757. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4758. if($('#classroom_observation_ob_comment')[0]){
  4759. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4760. }
  4761. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4762. }else if (e.data.tools && e.data.tools == "logout"){
  4763. U.MD.U.LO.logoutSystem()
  4764. }else if (e.data.tools && e.data.tools == "getLogin"){
  4765. let _iframe = $('#UI_Login')[0];
  4766. if (_iframe) {
  4767. var userInfo = US.userInfo;
  4768. var type = 2
  4769. if(userInfo && userInfo.userid){
  4770. type = 1
  4771. }
  4772. _contentWindow = _iframe.contentWindow;
  4773. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4774. }
  4775. }
  4776. });
  4777. U.MD.D.I.selectUser = function () {
  4778. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4779. if (res.value[0].length > 0) {
  4780. US.userInfo = res.value[0][0];
  4781. $(".userName")[0].innerHTML = US.userInfo.username;
  4782. }
  4783. }, [], { "type": "GET", "withCredentials": true });
  4784. }
  4785. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4786. var _userinfo = US.userInfo, //登录用户信息
  4787. _userid = US.userInfo.userid, //登录用户id
  4788. _oid = _userinfo.organizeid,
  4789. _type = US.userInfo.type,
  4790. _org = US.userInfo.org,
  4791. _role = US.userInfo.role,
  4792. _classId = US.userInfo.classid;
  4793. if (_type == 4) {
  4794. tType = 4
  4795. }
  4796. switch (str) {
  4797. case "studyDetailNT": //无终端模式
  4798. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4799. setTimeout(() => {
  4800. U.MD.U.L.login();
  4801. }, 2000);
  4802. } else {
  4803. _formdiv = new U.UF.UI.form(
  4804. "课程详情",
  4805. $$("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 }), {
  4806. "id": "studyDetailNT",
  4807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4808. "onresize": function () { }
  4809. }, {
  4810. closecallback: function () { }
  4811. }, { "style": { "height": "36px" } }).form; //创建窗体
  4812. _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); } }
  4813. break;
  4814. }
  4815. case "studyDetail":
  4816. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4817. setTimeout(() => {
  4818. U.MD.U.L.login();
  4819. }, 2000);
  4820. } else {
  4821. _formdiv = new U.UF.UI.form(
  4822. "课程详情",
  4823. $$("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 }), {
  4824. "id": "studyDetail",
  4825. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4826. "onresize": function () { }
  4827. }, {
  4828. closecallback: function () { }
  4829. }, { "style": { "height": "36px" } }).form; //创建窗体
  4830. _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); } }
  4831. break;
  4832. }
  4833. case "studyDetailTrain":
  4834. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4835. setTimeout(() => {
  4836. U.MD.U.L.login();
  4837. }, 2000);
  4838. } else {
  4839. _formdiv = new U.UF.UI.form(
  4840. "培训详情",
  4841. $$("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 }), {
  4842. "id": "studyDetailTrain",
  4843. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4844. "onresize": function () { }
  4845. }, {
  4846. closecallback: function () { }
  4847. }, { "style": { "height": "36px" } }).form; //创建窗体
  4848. _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); } }
  4849. break;
  4850. }
  4851. case "studyDetailS":
  4852. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4853. setTimeout(() => {
  4854. U.MD.U.L.login();
  4855. }, 2000);
  4856. } else {
  4857. _formdiv = new U.UF.UI.form(
  4858. "项目详情",
  4859. $$("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 }), {
  4860. "id": "studyDetailS",
  4861. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4862. "onresize": function () { }
  4863. }, {
  4864. closecallback: function () { }
  4865. }, { "style": { "height": "36px" } }).form; //创建窗体
  4866. _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); } }
  4867. break;
  4868. }
  4869. case "studyDetailStudio":
  4870. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4871. setTimeout(() => {
  4872. U.MD.U.L.login();
  4873. }, 2000);
  4874. } else {
  4875. _formdiv = new U.UF.UI.form(
  4876. "工作详情",
  4877. $$("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 }), {
  4878. "id": "studyDetailStudio",
  4879. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. _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); } }
  4885. break;
  4886. }
  4887. case "studyDetailS5":
  4888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4889. setTimeout(() => {
  4890. U.MD.U.L.login();
  4891. }, 2000);
  4892. } else {
  4893. _formdiv = new U.UF.UI.form(
  4894. "项目详情",
  4895. $$("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 }), {
  4896. "id": "studyDetailS",
  4897. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. _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); } }
  4903. break;
  4904. }
  4905. case "studyDetailGM":
  4906. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4907. setTimeout(() => {
  4908. U.MD.U.L.login();
  4909. }, 2000);
  4910. } else {
  4911. _formdiv = new U.UF.UI.form(
  4912. "课程详情",
  4913. $$("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 }), {
  4914. "id": "studyDetail",
  4915. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4916. "onresize": function () { }
  4917. }, {
  4918. closecallback: function () { }
  4919. }, { "style": { "height": "36px" } }).form; //创建窗体
  4920. _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); } }
  4921. break;
  4922. }
  4923. case "hanUrl":
  4924. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4925. setTimeout(() => {
  4926. U.MD.U.L.login();
  4927. }, 2000);
  4928. } else {
  4929. _formdiv = new U.UF.UI.form(
  4930. "汉字宫",
  4931. $$("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" }), {
  4932. "id": "hanUrl",
  4933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4934. "onresize": function () { }
  4935. }, {
  4936. closecallback: function () { }
  4937. }, { "style": { "height": "36px" } }).form; //创建窗体
  4938. _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); } }
  4939. break;
  4940. }
  4941. case "index":
  4942. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4943. setTimeout(() => {
  4944. U.MD.U.L.login();
  4945. }, 2000);
  4946. } else {
  4947. _formdiv = new U.UF.UI.form(
  4948. "课程中心",
  4949. $$("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 }), {
  4950. "id": "study",
  4951. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. _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); } }
  4957. break;
  4958. }
  4959. case "dataClass":
  4960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4961. setTimeout(() => {
  4962. U.MD.U.L.login();
  4963. }, 2000);
  4964. } else {
  4965. _formdiv = new U.UF.UI.form(
  4966. "数据报告",
  4967. $$("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 }), {
  4968. "id": "dataClass",
  4969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. _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); } }
  4975. break;
  4976. }
  4977. case "opencCscl":
  4978. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4979. setTimeout(() => {
  4980. U.MD.U.L.login();
  4981. }, 2000);
  4982. } else {
  4983. _formdiv = new U.UF.UI.form(
  4984. "协同建构",
  4985. $$("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 }), {
  4986. "id": "futureClass",
  4987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. _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); } }
  4993. break;
  4994. }
  4995. case "openCourseUpdate":
  4996. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4997. setTimeout(() => {
  4998. U.MD.U.L.login();
  4999. }, 2000);
  5000. } else {
  5001. _formdiv = new U.UF.UI.form(
  5002. "课程管理",
  5003. $$("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 }), {
  5004. "id": "openCourseUpdate",
  5005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5006. "onresize": function () { }
  5007. }, {
  5008. closecallback: function () { }
  5009. }, { "style": { "height": "36px" } }).form; //创建窗体
  5010. break;
  5011. }
  5012. case "openNewCourseUpdate":
  5013. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5014. setTimeout(() => {
  5015. U.MD.U.L.login();
  5016. }, 2000);
  5017. } else {
  5018. _formdiv = new U.UF.UI.form(
  5019. "课程管理",
  5020. $$("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 }), {
  5021. "id": "openCourseUpdate",
  5022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5023. "onresize": function () { }
  5024. }, {
  5025. closecallback: function () { }
  5026. }, { "style": { "height": "36px" } }).form; //创建窗体
  5027. break;
  5028. }
  5029. case "openCourseEUpdate":
  5030. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5031. setTimeout(() => {
  5032. U.MD.U.L.login();
  5033. }, 2000);
  5034. } else {
  5035. _formdiv = new U.UF.UI.form(
  5036. "课程管理",
  5037. $$("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 }), {
  5038. "id": "openCourseUpdate",
  5039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5040. "onresize": function () { }
  5041. }, {
  5042. closecallback: function () { }
  5043. }, { "style": { "height": "36px" } }).form; //创建窗体
  5044. break;
  5045. }
  5046. case "openCourseAiUpdate":
  5047. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5048. setTimeout(() => {
  5049. U.MD.U.L.login();
  5050. }, 2000);
  5051. } else {
  5052. _formdiv = new U.UF.UI.form(
  5053. "课程管理",
  5054. $$("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 }), {
  5055. "id": "openCourseUpdate",
  5056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5057. "onresize": function () { }
  5058. }, {
  5059. closecallback: function () { }
  5060. }, { "style": { "height": "36px" } }).form; //创建窗体
  5061. break;
  5062. }
  5063. case "openCourseAiUpdate2":
  5064. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5065. setTimeout(() => {
  5066. U.MD.U.L.login();
  5067. }, 2000);
  5068. } else {
  5069. _formdiv = new U.UF.UI.form(
  5070. "课程管理",
  5071. $$("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 }), {
  5072. "id": "openCourseUpdate",
  5073. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5074. "onresize": function () { }
  5075. }, {
  5076. closecallback: function () { }
  5077. }, { "style": { "height": "36px" } }).form; //创建窗体
  5078. break;
  5079. }
  5080. case "openCourseNewUpdate":
  5081. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5082. setTimeout(() => {
  5083. U.MD.U.L.login();
  5084. }, 2000);
  5085. } else {
  5086. _formdiv = new U.UF.UI.form(
  5087. "课程管理",
  5088. $$("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 }), {
  5089. "id": "openCourseUpdate",
  5090. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5091. "onresize": function () { }
  5092. }, {
  5093. closecallback: function () { }
  5094. }, { "style": { "height": "36px" } }).form; //创建窗体
  5095. break;
  5096. }
  5097. case "inviteLoginSz":
  5098. _formdiv = new U.UF.UI.form(
  5099. "随机码登录",
  5100. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5101. "id": "loginSz",
  5102. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5103. "onresize": function () { }
  5104. }, {
  5105. closecallback: function () { }
  5106. }, { "style": { "height": "36px" } }).form; //创建窗体
  5107. break;
  5108. case "loginSz":
  5109. _formdiv = new U.UF.UI.form(
  5110. "教师登录",
  5111. $$("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" }), {
  5112. "id": "loginSz",
  5113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. break;
  5119. case "teacher":
  5120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5121. setTimeout(() => {
  5122. U.MD.U.L.login();
  5123. }, 2000);
  5124. } else {
  5125. _formdiv = new U.UF.UI.form(
  5126. "教师管理",
  5127. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5128. "id": "teacher",
  5129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //创建窗体
  5134. break;
  5135. }
  5136. case "dataBoardSZArea":
  5137. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5138. setTimeout(() => {
  5139. U.MD.U.L.login();
  5140. }, 2000);
  5141. } else {
  5142. _formdiv = new U.UF.UI.form(
  5143. "综合数据看板",
  5144. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5145. "id": "dataBoardSZArea",
  5146. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. break;
  5152. }
  5153. case "dataBoardSZCity":
  5154. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5155. setTimeout(() => {
  5156. U.MD.U.L.login();
  5157. }, 2000);
  5158. } else {
  5159. _formdiv = new U.UF.UI.form(
  5160. "综合数据看板",
  5161. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5162. "id": "dataBoardSZCity",
  5163. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. break;
  5169. }
  5170. case "classroom_observation_board":
  5171. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5172. setTimeout(() => {
  5173. U.MD.U.L.login();
  5174. }, 2000);
  5175. } else {
  5176. _formdiv = new U.UF.UI.form(
  5177. "课堂观察",
  5178. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5179. "id": "classroom_observation_board",
  5180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5181. "onresize": function () { }
  5182. }, {
  5183. closecallback: function () { }
  5184. }, { "style": { "height": "36px" } }).form; //创建窗体
  5185. break;
  5186. }
  5187. case "classroom_observation_ob_comment":
  5188. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5189. setTimeout(() => {
  5190. U.MD.U.L.login();
  5191. }, 2000);
  5192. } else {
  5193. _formdiv = new U.UF.UI.form(
  5194. "课堂审核",
  5195. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5196. "id": "classroom_observation_ob_comment",
  5197. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. break;
  5203. }
  5204. }
  5205. }
  5206. U.MD.D.I.openApplication = function (str, obj, info) {
  5207. obj = obj || {};
  5208. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5209. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5210. _userinfo = US.userInfo, //登录用户信息
  5211. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5212. _oid = obj.organizeid || _userinfo.organizeid,
  5213. _type = US.userInfo.type,
  5214. _org = US.userInfo.org,
  5215. _role = US.userInfo.role,
  5216. _classId = US.userInfo.classid,
  5217. _TscreenType = 1
  5218. _screenType = 2,
  5219. _SscreenType = 3;
  5220. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5221. return;
  5222. }
  5223. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5224. switch (str) {
  5225. case "studnetProject": //好友打开
  5226. _formdiv = new U.UF.UI.form(
  5227. "我的项目",
  5228. $$("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 }), {
  5229. "id": "studnetProject",
  5230. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. _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); } }
  5236. break;
  5237. case "studentEvaluate": //好友打开
  5238. _formdiv = new U.UF.UI.form(
  5239. "我的评价",
  5240. $$("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 }), {
  5241. "id": "studentEvaluate",
  5242. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _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); } }
  5248. break;
  5249. case "my":
  5250. _formdiv = new U.UF.UI.form(
  5251. "我的资料",
  5252. $$("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 }), {
  5253. "id": "my",
  5254. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. _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); } }
  5260. break;
  5261. case "program":
  5262. _formdiv = new U.UF.UI.form(
  5263. "编程平台",
  5264. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5265. "id": "program",
  5266. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. _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); } }
  5272. break;
  5273. case "library":
  5274. _formdiv = new U.UF.UI.form(
  5275. "素材库",
  5276. $$("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 }), {
  5277. "id": "library",
  5278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _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); } }
  5284. break;
  5285. case "whiteboard":
  5286. _formdiv = new U.UF.UI.form(
  5287. "电子白板",
  5288. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5289. "id": "whiteboard",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _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); } }
  5296. break;
  5297. case "investigation":
  5298. _formdiv = new U.UF.UI.form(
  5299. "问卷调查",
  5300. $$("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 }), {
  5301. "id": "investigation",
  5302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "note":
  5310. _formdiv = new U.UF.UI.form(
  5311. "便签分类",
  5312. $$("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 }), {
  5313. "id": "note",
  5314. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. // case "score":
  5322. // _formdiv = new U.UF.UI.form(
  5323. // "量规评分",
  5324. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5325. // "id": "score",
  5326. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5327. // "onresize": function() {}
  5328. // }, {
  5329. // closecallback: function() {}
  5330. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. // _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); } }
  5332. // break;
  5333. case "mind":
  5334. _formdiv = new U.UF.UI.form(
  5335. "思维导图",
  5336. $$("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"
  5337. "id": "mind",
  5338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. case "doc":
  5346. // U.MD.D.I.isRoom();
  5347. _formdiv = new U.UF.UI.form(
  5348. "协同文档",
  5349. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5350. "id": "doc",
  5351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5357. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5358. // })
  5359. _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); } }
  5360. break;
  5361. case "studentStudy":
  5362. _formdiv = new U.UF.UI.form(
  5363. "课程中心",
  5364. $$("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
  5365. "id": "studentStudy",
  5366. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _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); } }
  5372. break;
  5373. case "train": //好友打开
  5374. _formdiv = new U.UF.UI.form(
  5375. "训练平台",
  5376. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5377. "id": "train",
  5378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. _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); } }
  5384. break;
  5385. case "mindNetwork": //好友打开
  5386. _formdiv = new U.UF.UI.form(
  5387. "思维网格",
  5388. $$("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 }), {
  5389. "id": "mindNetwork",
  5390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5396. break;
  5397. case "studentClassRoom": //好友打开
  5398. _formdiv = new U.UF.UI.form(
  5399. "实时课堂",
  5400. $$("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 }), {
  5401. "id": "studentClassRoom",
  5402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5403. "onresize": function () { }
  5404. }, {
  5405. closecallback: function () { }
  5406. }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. _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); } }
  5408. setTimeout(() => {
  5409. U.UF.F.windowZooming(_formdiv)
  5410. }, 0);
  5411. break;
  5412. }
  5413. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5414. switch (str) {
  5415. case "studnetProject": //好友打开
  5416. _formdiv = new U.UF.UI.form(
  5417. "我的项目",
  5418. $$("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 }), {
  5419. "id": "studnetProject",
  5420. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5421. "onresize": function () { }
  5422. }, {
  5423. closecallback: function () { }
  5424. }, { "style": { "height": "36px" } }).form; //创建窗体
  5425. _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); } }
  5426. break;
  5427. case "studentEvaluate": //好友打开
  5428. _formdiv = new U.UF.UI.form(
  5429. "我的评价",
  5430. $$("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 }), {
  5431. "id": "studentEvaluate",
  5432. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //创建窗体
  5437. _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); } }
  5438. break;
  5439. case "my":
  5440. _formdiv = new U.UF.UI.form(
  5441. "我的资料",
  5442. $$("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 }), {
  5443. "id": "my",
  5444. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5450. break;
  5451. case "program":
  5452. _formdiv = new U.UF.UI.form(
  5453. "编程平台",
  5454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5455. "id": "program",
  5456. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. break;
  5463. case "library":
  5464. _formdiv = new U.UF.UI.form(
  5465. "素材库",
  5466. $$("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 }), {
  5467. "id": "library",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. _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); } }
  5474. break;
  5475. case "whiteboard":
  5476. _formdiv = new U.UF.UI.form(
  5477. "电子白板",
  5478. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5479. "id": "whiteboard",
  5480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5486. break;
  5487. case "investigation":
  5488. _formdiv = new U.UF.UI.form(
  5489. "问卷调查",
  5490. $$("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 }), {
  5491. "id": "investigation",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. _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); } }
  5498. break;
  5499. case "note":
  5500. _formdiv = new U.UF.UI.form(
  5501. "便签分类",
  5502. $$("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 }), {
  5503. "id": "note",
  5504. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //创建窗体
  5509. _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); } }
  5510. break;
  5511. // case "score":
  5512. // _formdiv = new U.UF.UI.form(
  5513. // "量规评分",
  5514. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5515. // "id": "score",
  5516. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5517. // "onresize": function() {}
  5518. // }, {
  5519. // closecallback: function() {}
  5520. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5522. // break;
  5523. case "mind":
  5524. _formdiv = new U.UF.UI.form(
  5525. "思维导图",
  5526. $$("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"
  5527. "id": "mind",
  5528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5529. "onresize": function () { }
  5530. }, {
  5531. closecallback: function () { }
  5532. }, { "style": { "height": "36px" } }).form; //创建窗体
  5533. _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); } }
  5534. break;
  5535. case "doc":
  5536. // U.MD.D.I.isRoom();
  5537. _formdiv = new U.UF.UI.form(
  5538. "协同文档",
  5539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5540. "id": "doc",
  5541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5547. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5548. })
  5549. _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); } }
  5550. break;
  5551. case "train": //好友打开
  5552. _formdiv = new U.UF.UI.form(
  5553. "训练平台",
  5554. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5555. "id": "train",
  5556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. case "studentStudy":
  5564. _formdiv = new U.UF.UI.form(
  5565. "课程中心",
  5566. $$("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
  5567. "id": "studentStudy",
  5568. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "mindNetwork": //好友打开
  5576. _formdiv = new U.UF.UI.form(
  5577. "思维网格",
  5578. $$("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 }), {
  5579. "id": "mindNetwork",
  5580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "studentClassRoom": //好友打开
  5588. _formdiv = new U.UF.UI.form(
  5589. "实时课堂",
  5590. $$("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 }), {
  5591. "id": "studentClassRoom",
  5592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. setTimeout(() => {
  5599. U.UF.F.windowZooming(_formdiv)
  5600. }, 0);
  5601. break;
  5602. }
  5603. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5604. //选择应用处理
  5605. switch (str) {
  5606. case "project": //好友打开
  5607. _formdiv = new U.UF.UI.form(
  5608. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5609. $$("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 }), {
  5610. "id": "project",
  5611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5612. "onresize": function () { }
  5613. }, {
  5614. closecallback: function () { }
  5615. }, { "style": { "height": "36px" } }).form; //创建窗体
  5616. _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); } }
  5617. break;
  5618. case "student":
  5619. _formdiv = new U.UF.UI.form(
  5620. "学生管理",
  5621. $$("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 }), {
  5622. "id": "student",
  5623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5624. "onresize": function () { }
  5625. }, {
  5626. closecallback: function () { }
  5627. }, { "style": { "height": "36px" } }).form; //创建窗体
  5628. _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); } }
  5629. break;
  5630. case "evaluate":
  5631. _formdiv = new U.UF.UI.form(
  5632. "学生评价",
  5633. $$("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 }), {
  5634. "id": "evaluate",
  5635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5636. "onresize": function () { }
  5637. }, {
  5638. closecallback: function () { }
  5639. }, { "style": { "height": "36px" } }).form; //创建窗体
  5640. _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); } }
  5641. break;
  5642. case "sys":
  5643. _formdiv = new U.UF.UI.form(
  5644. "目标管理",
  5645. $$("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 }), {
  5646. "id": "sys",
  5647. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. _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); } }
  5653. break;
  5654. case "courseDesign":
  5655. _formdiv = new U.UF.UI.form(
  5656. "项目设计",
  5657. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5658. "id": "courseDesign",
  5659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5660. "onresize": function () { }
  5661. }, {
  5662. closecallback: function () { }
  5663. }, { "style": { "height": "36px" } }).form; //创建窗体
  5664. _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); } }
  5665. break;
  5666. case "program":
  5667. _formdiv = new U.UF.UI.form(
  5668. "编程平台",
  5669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5670. "id": "program",
  5671. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5672. "onresize": function () { }
  5673. }, {
  5674. closecallback: function () { }
  5675. }, { "style": { "height": "36px" } }).form; //创建窗体
  5676. _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); } }
  5677. break;
  5678. case "class":
  5679. _formdiv = new U.UF.UI.form(
  5680. "班级管理",
  5681. $$("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 }), {
  5682. "id": "class",
  5683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. _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); } }
  5689. break;
  5690. case "Grade":
  5691. _formdiv = new U.UF.UI.form(
  5692. "年级管理",
  5693. $$("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 }), {
  5694. "id": "Grade",
  5695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. _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); } }
  5701. break;
  5702. case "teacherOffice":
  5703. _formdiv = new U.UF.UI.form(
  5704. "教研室",
  5705. $$("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 }), {
  5706. "id": "teacherOffice",
  5707. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _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); } }
  5713. break;
  5714. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5718. "id": "my",
  5719. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. _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); } }
  5725. break;
  5726. case "notice":
  5727. _formdiv = new U.UF.UI.form(
  5728. "通知公告",
  5729. $$("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 }), {
  5730. "id": "notice",
  5731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _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); } }
  5737. break;
  5738. case "library":
  5739. _formdiv = new U.UF.UI.form(
  5740. "素材库",
  5741. $$("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 }), {
  5742. "id": "library",
  5743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "whiteboard":
  5751. _formdiv = new U.UF.UI.form(
  5752. "电子白板",
  5753. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5754. "id": "whiteboard",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "investigation":
  5763. _formdiv = new U.UF.UI.form(
  5764. "问卷调查",
  5765. $$("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 }), {
  5766. "id": "investigation",
  5767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. break;
  5774. case "note":
  5775. _formdiv = new U.UF.UI.form(
  5776. "便签分类",
  5777. $$("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 }), {
  5778. "id": "note",
  5779. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _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); } }
  5785. break;
  5786. // case "score":
  5787. // _formdiv = new U.UF.UI.form(
  5788. // "量规评分",
  5789. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5790. // "id": "score",
  5791. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. // "onresize": function() {}
  5793. // }, {
  5794. // closecallback: function() {}
  5795. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. // _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); } }
  5797. // break;
  5798. case "mind":
  5799. _formdiv = new U.UF.UI.form(
  5800. "思维导图",
  5801. $$("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"
  5802. "id": "mind",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _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); } }
  5809. break;
  5810. case "doc":
  5811. // U.MD.D.I.isRoom();
  5812. _formdiv = new U.UF.UI.form(
  5813. "协同文档",
  5814. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5815. "id": "doc",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5822. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5823. })
  5824. _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); } }
  5825. break;
  5826. case "study":
  5827. _formdiv = new U.UF.UI.form(
  5828. "课程中心",
  5829. $$("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
  5830. "id": "study",
  5831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5832. "onresize": function () { }
  5833. }, {
  5834. closecallback: function () { }
  5835. }, { "style": { "height": "36px" } }).form; //创建窗体
  5836. _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); } }
  5837. break;
  5838. case "mindNetwork": //好友打开
  5839. _formdiv = new U.UF.UI.form(
  5840. "思维网格",
  5841. $$("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 }), {
  5842. "id": "mindNetwork",
  5843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. _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); } }
  5849. break;
  5850. case "train": //好友打开
  5851. _formdiv = new U.UF.UI.form(
  5852. "训练平台",
  5853. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5854. "id": "mindNetwork",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _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); } }
  5861. break;
  5862. case "teacherClassRoom": //好友打开
  5863. _formdiv = new U.UF.UI.form(
  5864. "实时课堂",
  5865. $$("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 }), {
  5866. "id": "teacherClassRoom",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _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); } }
  5873. setTimeout(() => {
  5874. U.UF.F.windowZooming(_formdiv)
  5875. }, 0);
  5876. break;
  5877. }
  5878. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5879. switch (str) {
  5880. case "project": //好友打开
  5881. _formdiv = new U.UF.UI.form(
  5882. "课程管理",
  5883. $$("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 }), {
  5884. "id": "project",
  5885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5886. "onresize": function () { }
  5887. }, {
  5888. closecallback: function () { }
  5889. }, { "style": { "height": "36px" } }).form; //创建窗体
  5890. _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); } }
  5891. break;
  5892. case "evaluate":
  5893. _formdiv = new U.UF.UI.form(
  5894. "学生评价",
  5895. $$("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 }), {
  5896. "id": "evaluate",
  5897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //创建窗体
  5902. _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); } }
  5903. break;
  5904. case "notice":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5908. "id": "notice",
  5909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. _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); } }
  5915. break;
  5916. case "stuLibrary":
  5917. _formdiv = new U.UF.UI.form(
  5918. "学习资料",
  5919. $$("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 }), {
  5920. "id": "stuLibrary",
  5921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //创建窗体
  5926. _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); } }
  5927. break;
  5928. case "program":
  5929. _formdiv = new U.UF.UI.form(
  5930. "编程平台",
  5931. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5932. "id": "program",
  5933. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //创建窗体
  5938. _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); } }
  5939. break;
  5940. case "whiteboard":
  5941. _formdiv = new U.UF.UI.form(
  5942. "电子白板",
  5943. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5944. "id": "whiteboard",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. _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); } }
  5951. break;
  5952. case "investigation":
  5953. _formdiv = new U.UF.UI.form(
  5954. "问卷调查",
  5955. $$("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 }), {
  5956. "id": "investigation",
  5957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5958. "onresize": function () { }
  5959. }, {
  5960. closecallback: function () { }
  5961. }, { "style": { "height": "36px" } }).form; //创建窗体
  5962. _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); } }
  5963. break;
  5964. case "mind":
  5965. _formdiv = new U.UF.UI.form(
  5966. "思维导图",
  5967. $$("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"
  5968. "id": "mind",
  5969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. _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); } }
  5975. break;
  5976. case "doc":
  5977. // U.MD.D.I.isRoom();
  5978. _formdiv = new U.UF.UI.form(
  5979. "协同文档",
  5980. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5981. "id": "doc",
  5982. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5983. "onresize": function () { }
  5984. }, {
  5985. closecallback: function () { }
  5986. }, { "style": { "height": "36px" } }).form; //创建窗体
  5987. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5988. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5989. })
  5990. _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); } }
  5991. break;
  5992. case "study":
  5993. _formdiv = new U.UF.UI.form(
  5994. "课程中心",
  5995. $$("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
  5996. "id": "study",
  5997. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6003. break;
  6004. case "mindNetwork": //好友打开
  6005. _formdiv = new U.UF.UI.form(
  6006. "思维网格",
  6007. $$("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 }), {
  6008. "id": "mindNetwork",
  6009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6015. break;
  6016. case "train": //好友打开
  6017. _formdiv = new U.UF.UI.form(
  6018. "训练平台",
  6019. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6020. "id": "train",
  6021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6027. break;
  6028. case "sys":
  6029. _formdiv = new U.UF.UI.form(
  6030. "目标管理",
  6031. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6032. "id": "sys",
  6033. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6039. break;
  6040. case "courseDesign":
  6041. _formdiv = new U.UF.UI.form(
  6042. "项目设计",
  6043. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6044. "id": "courseDesign",
  6045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6051. break;
  6052. }
  6053. } else if (!_type) {
  6054. switch (str) {
  6055. case "my":
  6056. _formdiv = new U.UF.UI.form(
  6057. "我的资料",
  6058. $$("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 }), {
  6059. "id": "my",
  6060. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6061. "onresize": function () { }
  6062. }, {
  6063. closecallback: function () { }
  6064. }, { "style": { "height": "36px" } }).form; //创建窗体
  6065. _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); } }
  6066. break;
  6067. }
  6068. }
  6069. switch (str) {
  6070. // AIprogram2 AI体验 aihub.cocorobo.cn
  6071. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6072. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6073. case "formulaEdi": //公式编辑
  6074. _formdiv = new U.UF.UI.form(
  6075. "公式编辑",
  6076. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6077. "id": "formulaEdi",
  6078. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //创建窗体
  6083. _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); } }
  6084. break;
  6085. case "molStr": //分子结构
  6086. _formdiv = new U.UF.UI.form(
  6087. "分子结构",
  6088. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6089. "id": "molStr",
  6090. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //创建窗体
  6095. _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); } }
  6096. break;
  6097. case "timeAxis": //时间轴
  6098. _formdiv = new U.UF.UI.form(
  6099. "时间轴",
  6100. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6101. "id": "timeAxis",
  6102. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6103. "onresize": function () { }
  6104. }, {
  6105. closecallback: function () { }
  6106. }, { "style": { "height": "36px" } }).form; //创建窗体
  6107. _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); } }
  6108. break;
  6109. case "AIprogram2": //AI体验
  6110. _formdiv = new U.UF.UI.form(
  6111. "AI体验",
  6112. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6113. "id": "AIprogram2",
  6114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6115. "onresize": function () { }
  6116. }, {
  6117. closecallback: function () { }
  6118. }, { "style": { "height": "36px" } }).form; //创建窗体
  6119. _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); } }
  6120. break;
  6121. case "Pythonprogram": //python编程
  6122. _formdiv = new U.UF.UI.form(
  6123. "Python编程",
  6124. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6125. "id": "Pythonprogram",
  6126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6127. "onresize": function () { }
  6128. }, {
  6129. closecallback: function () { }
  6130. }, { "style": { "height": "36px" } }).form; //创建窗体
  6131. _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); } }
  6132. break;
  6133. case "AIprogram": //ai编程
  6134. _formdiv = new U.UF.UI.form(
  6135. "AI编程平台",
  6136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6137. "id": "AIprogram",
  6138. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6139. "onresize": function () { }
  6140. }, {
  6141. closecallback: function () { }
  6142. }, { "style": { "height": "36px" } }).form; //创建窗体
  6143. _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); } }
  6144. break;
  6145. case "CocoPi": //CocoPi
  6146. _formdiv = new U.UF.UI.form(
  6147. "CocoPi",
  6148. $$("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" }), {
  6149. "id": "CocoPi",
  6150. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6151. "onresize": function () { }
  6152. }, {
  6153. closecallback: function () { }
  6154. }, { "style": { "height": "36px" } }).form; //创建窗体
  6155. _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); } }
  6156. break;
  6157. case "Wood": //Wood
  6158. _formdiv = new U.UF.UI.form(
  6159. "海龟编程",
  6160. $$("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/" }), {
  6161. "id": "Wood",
  6162. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6163. "onresize": function () { }
  6164. }, {
  6165. closecallback: function () { }
  6166. }, { "style": { "height": "36px" } }).form; //创建窗体
  6167. _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); } }
  6168. break;
  6169. case "car": //模拟驾驶
  6170. _formdiv = new U.UF.UI.form(
  6171. "模拟驾驶",
  6172. $$("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/" }), {
  6173. "id": "car",
  6174. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6175. "onresize": function () { }
  6176. }, {
  6177. closecallback: function () { }
  6178. }, { "style": { "height": "36px" } }).form; //创建窗体
  6179. _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); } }
  6180. break;
  6181. case "lineSearch": //路径搜索
  6182. _formdiv = new U.UF.UI.form(
  6183. "路径搜索",
  6184. $$("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/" }), {
  6185. "id": "lineSearch",
  6186. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6187. "onresize": function () { }
  6188. }, {
  6189. closecallback: function () { }
  6190. }, { "style": { "height": "36px" } }).form; //创建窗体
  6191. _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); } }
  6192. break;
  6193. case "deepLearning": //深度学习
  6194. _formdiv = new U.UF.UI.form(
  6195. "深度学习",
  6196. $$("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/#" }), {
  6197. "id": "deepLearning",
  6198. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6199. "onresize": function () { }
  6200. }, {
  6201. closecallback: function () { }
  6202. }, { "style": { "height": "36px" } }).form; //创建窗体
  6203. _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); } }
  6204. break;
  6205. case "allHistory": //深度学习
  6206. _formdiv = new U.UF.UI.form(
  6207. "全历史",
  6208. $$("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/" }), {
  6209. "id": "allHistory",
  6210. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6211. "onresize": function () { }
  6212. }, {
  6213. closecallback: function () { }
  6214. }, { "style": { "height": "36px" } }).form; //创建窗体
  6215. _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); } }
  6216. break;
  6217. case "chatPDF": //ai编程
  6218. _formdiv = new U.UF.UI.form(
  6219. "chatPDF",
  6220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6221. "id": "chatPDF",
  6222. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6223. "onresize": function () { }
  6224. }, {
  6225. closecallback: function () { }
  6226. }, { "style": { "height": "36px" } }).form; //创建窗体
  6227. _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); } }
  6228. break;
  6229. case "resources": //国家教育
  6230. _formdiv = new U.UF.UI.form(
  6231. "国家教育",
  6232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6233. "id": "resources",
  6234. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6235. "onresize": function () { }
  6236. }, {
  6237. closecallback: function () { }
  6238. }, { "style": { "height": "36px" } }).form; //创建窗体
  6239. _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); } }
  6240. break;
  6241. case "codeEdit": //源码编辑
  6242. _formdiv = new U.UF.UI.form(
  6243. "源码编辑",
  6244. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6245. "id": "codeEdit",
  6246. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6247. "onresize": function () { }
  6248. }, {
  6249. closecallback: function () { }
  6250. }, { "style": { "height": "36px" } }).form; //创建窗体
  6251. _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); } }
  6252. break; //
  6253. case "MindMap": //MindMap
  6254. _formdiv = new U.UF.UI.form(
  6255. "MindMap",
  6256. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6257. "id": "MindMap",
  6258. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6259. "onresize": function () { }
  6260. }, {
  6261. closecallback: function () { }
  6262. }, { "style": { "height": "36px" } }).form; //创建窗体
  6263. _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); } }
  6264. break;
  6265. case "netWorkPanel": //netWorkPanel
  6266. _formdiv = new U.UF.UI.form(
  6267. "netWorkPanel",
  6268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6269. "id": "netWorkPanel",
  6270. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6271. "onresize": function () { }
  6272. }, {
  6273. closecallback: function () { }
  6274. }, { "style": { "height": "36px" } }).form; //创建窗体
  6275. _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); } }
  6276. break;
  6277. case "GeoGebra": //GeoGebra
  6278. _formdiv = new U.UF.UI.form(
  6279. "GeoGebra",
  6280. $$("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" }), {
  6281. "id": "GeoGebra",
  6282. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _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); } }
  6288. break;
  6289. case "translation": //翻译
  6290. _formdiv = new U.UF.UI.form(
  6291. "翻译",
  6292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6293. "id": "translation",
  6294. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _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); } }
  6300. break;
  6301. case "mohe": //魔盒
  6302. _formdiv = new U.UF.UI.form(
  6303. "魔盒识字",
  6304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6305. "id": "mohe",
  6306. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _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); } }
  6312. break;
  6313. case "24game": //24点
  6314. _formdiv = new U.UF.UI.form(
  6315. "24点",
  6316. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6317. "id": "24game",
  6318. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _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); } }
  6324. break;
  6325. case "case":
  6326. _formdiv = new U.UF.UI.form(
  6327. "课程进展",
  6328. $$("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 }), {
  6329. "id": "case",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _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); } }
  6336. break;
  6337. case "snf":
  6338. _formdiv = new U.UF.UI.form(
  6339. "赛诺梵",
  6340. $$("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" }), {
  6341. "id": "snf",
  6342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //创建窗体
  6347. _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); } }
  6348. break;
  6349. case "hanFamily":
  6350. _formdiv = new U.UF.UI.form(
  6351. "汉字家族",
  6352. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6353. "id": "hanFamily",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6360. break;
  6361. case "hanClassics":
  6362. _formdiv = new U.UF.UI.form(
  6363. "国学经典",
  6364. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6365. "id": "hanClassics",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6372. break;
  6373. case "hanTraining":
  6374. _formdiv = new U.UF.UI.form(
  6375. "笔画训练",
  6376. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6377. "id": "hanTraining",
  6378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6384. break;
  6385. case "hanClass":
  6386. _formdiv = new U.UF.UI.form(
  6387. "书法课堂",
  6388. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6389. "id": "hanClass",
  6390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6396. break;
  6397. case "han":
  6398. _formdiv = new U.UF.UI.form(
  6399. "汉字宫",
  6400. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6401. "id": "han",
  6402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //创建窗体
  6407. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6408. break;
  6409. case "projectGM": //课程管理
  6410. _formdiv = new U.UF.UI.form(
  6411. "课程管理",
  6412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6413. "id": "projectGM",
  6414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //创建窗体
  6419. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6420. break;
  6421. case "studyGM": //课程中心
  6422. _formdiv = new U.UF.UI.form(
  6423. "课程中心",
  6424. $$("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
  6425. "id": "study",
  6426. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //创建窗体
  6431. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6432. break;
  6433. // studentGM
  6434. case "studentGM": //学生管理
  6435. _formdiv = new U.UF.UI.form(
  6436. "学生管理",
  6437. $$("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 }), {
  6438. "id": "studentGM",
  6439. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6440. "onresize": function () { }
  6441. }, {
  6442. closecallback: function () { }
  6443. }, { "style": { "height": "36px" } }).form; //创建窗体
  6444. _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); } }
  6445. break;
  6446. case "evaluateGM": //学生评价
  6447. _formdiv = new U.UF.UI.form(
  6448. "学生评价",
  6449. $$("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 }), {
  6450. "id": "evaluateGM",
  6451. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6452. "onresize": function () { }
  6453. }, {
  6454. closecallback: function () { }
  6455. }, { "style": { "height": "36px" } }).form; //创建窗体
  6456. _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); } }
  6457. break;
  6458. // classGM
  6459. case "classGM": //班级管理
  6460. _formdiv = new U.UF.UI.form(
  6461. "班级管理",
  6462. $$("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 }), {
  6463. "id": "classGM",
  6464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6465. "onresize": function () { }
  6466. }, {
  6467. closecallback: function () { }
  6468. }, { "style": { "height": "36px" } }).form; //创建窗体
  6469. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6470. break;
  6471. // dataGM
  6472. case "dataGM":
  6473. _formdiv = new U.UF.UI.form(
  6474. "我的资料",
  6475. $$("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 }), {
  6476. "id": "dataGM",
  6477. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _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); } }
  6483. break;
  6484. // caseGM
  6485. case "caseGM": //课程进展
  6486. _formdiv = new U.UF.UI.form(
  6487. "课程进展",
  6488. $$("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 }), {
  6489. "id": "caseGM",
  6490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6491. "onresize": function () { }
  6492. }, {
  6493. closecallback: function () { }
  6494. }, { "style": { "height": "36px" } }).form; //创建窗体
  6495. _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); } }
  6496. break;
  6497. // meterialGM
  6498. case "meterialGM": //素材库
  6499. _formdiv = new U.UF.UI.form(
  6500. "素材库",
  6501. $$("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 }), {
  6502. "id": "meterialGM",
  6503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6504. "onresize": function () { }
  6505. }, {
  6506. closecallback: function () { }
  6507. }, { "style": { "height": "36px" } }).form; //创建窗体
  6508. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6509. break;
  6510. // evaluateSGM
  6511. case "evaluateSGM": //我的评价
  6512. _formdiv = new U.UF.UI.form(
  6513. "我的评价",
  6514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6515. "id": "evaluateSGM",
  6516. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6517. "onresize": function () { }
  6518. }, {
  6519. closecallback: function () { }
  6520. }, { "style": { "height": "36px" } }).form; //创建窗体
  6521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6522. break;
  6523. case "jupyter": //jupyter
  6524. _formdiv = new U.UF.UI.form(
  6525. "jupyter",
  6526. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6527. "id": "jupyter",
  6528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6529. "onresize": function () { }
  6530. }, {
  6531. closecallback: function () { }
  6532. }, { "style": { "height": "36px" } }).form; //创建窗体
  6533. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6534. break;
  6535. case "number": //数字实验室
  6536. _formdiv = new U.UF.UI.form(
  6537. "数字实验室",
  6538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6539. "id": "number",
  6540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6541. "onresize": function () { }
  6542. }, {
  6543. closecallback: function () { }
  6544. }, { "style": { "height": "36px" } }).form; //创建窗体
  6545. _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); } }
  6546. break;
  6547. case "studentCourse": //项目管理 学生
  6548. _formdiv = new U.UF.UI.form(
  6549. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6550. $$("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 }), {
  6551. "id": "studentCourse",
  6552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6553. "onresize": function () { }
  6554. }, {
  6555. closecallback: function () { }
  6556. }, { "style": { "height": "36px" } }).form; //创建窗体
  6557. _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); } }
  6558. break;
  6559. case "studentCourseS": //项目管理 老师
  6560. _formdiv = new U.UF.UI.form(
  6561. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6562. $$("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 }), {
  6563. "id": "studentCourseS",
  6564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6565. "onresize": function () { }
  6566. }, {
  6567. closecallback: function () { }
  6568. }, { "style": { "height": "36px" } }).form; //创建窗体
  6569. _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); } }
  6570. break;
  6571. case "studentIndex": //项目中心
  6572. _formdiv = new U.UF.UI.form(
  6573. "项目中心",
  6574. $$("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 }), {
  6575. "id": "studentIndex",
  6576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6577. "onresize": function () { }
  6578. }, {
  6579. closecallback: function () { }
  6580. }, { "style": { "height": "36px" } }).form; //创建窗体
  6581. _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); } }
  6582. break;
  6583. case "CaseDesignS":
  6584. _formdiv = new U.UF.UI.form(
  6585. "项目进展",
  6586. $$("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 }), {
  6587. "id": "case",
  6588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6589. "onresize": function () { }
  6590. }, {
  6591. closecallback: function () { }
  6592. }, { "style": { "height": "36px" } }).form; //创建窗体
  6593. _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); } }
  6594. break;
  6595. case "tcStudent": //腾讯学生管理
  6596. _formdiv = new U.UF.UI.form(
  6597. "学生管理",
  6598. $$("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 }), {
  6599. "id": "tcStudent",
  6600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6601. "onresize": function () { }
  6602. }, {
  6603. closecallback: function () { }
  6604. }, { "style": { "height": "36px" } }).form; //创建窗体
  6605. _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); } }
  6606. break;
  6607. case "tcSchool": //腾讯学校管理
  6608. _formdiv = new U.UF.UI.form(
  6609. "学校管理",
  6610. $$("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 }), {
  6611. "id": "tcSchool",
  6612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6613. "onresize": function () { }
  6614. }, {
  6615. closecallback: function () { }
  6616. }, { "style": { "height": "36px" } }).form; //创建窗体
  6617. _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); } }
  6618. break;
  6619. case "tcTeacher": //腾讯学校管理
  6620. _formdiv = new U.UF.UI.form(
  6621. "教师管理",
  6622. $$("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 }), {
  6623. "id": "tcTeacher",
  6624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6625. "onresize": function () { }
  6626. }, {
  6627. closecallback: function () { }
  6628. }, { "style": { "height": "36px" } }).form; //创建窗体
  6629. _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); } }
  6630. break;
  6631. case "teacher":
  6632. _formdiv = new U.UF.UI.form(
  6633. "教师管理",
  6634. $$("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 }), {
  6635. "id": "teacher",
  6636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6637. "onresize": function () { }
  6638. }, {
  6639. closecallback: function () { }
  6640. }, { "style": { "height": "36px" } }).form; //创建窗体
  6641. _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); } }
  6642. break;
  6643. case "tcData": //腾讯我的资料
  6644. _formdiv = new U.UF.UI.form(
  6645. "我的资料",
  6646. $$("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 }), {
  6647. "id": "tcData",
  6648. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6649. "onresize": function () { }
  6650. }, {
  6651. closecallback: function () { }
  6652. }, { "style": { "height": "36px" } }).form; //创建窗体
  6653. _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); } }
  6654. break;
  6655. case "tcNotice": //腾讯消息通知
  6656. _formdiv = new U.UF.UI.form(
  6657. "消息通知",
  6658. $$("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 }), {
  6659. "id": "tcNotice",
  6660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6661. "onresize": function () { }
  6662. }, {
  6663. closecallback: function () { }
  6664. }, { "style": { "height": "36px" } }).form; //创建窗体
  6665. _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); } }
  6666. break;
  6667. case "myReport": //好友打开
  6668. _formdiv = new U.UF.UI.form(
  6669. "我的评价",
  6670. $$("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 }), {
  6671. "id": "myReport",
  6672. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6673. "onresize": function () { }
  6674. }, {
  6675. closecallback: function () { }
  6676. }, { "style": { "height": "36px" } }).form; //创建窗体
  6677. _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); } }
  6678. break;
  6679. case "learnAna": //好友打开
  6680. _formdiv = new U.UF.UI.form(
  6681. "学习分析",
  6682. $$("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 }), {
  6683. "id": "learnAna",
  6684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6685. "onresize": function () { }
  6686. }, {
  6687. closecallback: function () { }
  6688. }, { "style": { "height": "36px" } }).form; //创建窗体
  6689. _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); } }
  6690. break;
  6691. case "AIChat": //AI共创
  6692. _formdiv = new U.UF.UI.form(
  6693. "AI共创",
  6694. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6695. "id": "AIChat",
  6696. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6697. "onresize": function () { }
  6698. }, {
  6699. istop: true,
  6700. closecallback: function () { $("#aichat_icon").remove(); },
  6701. narrowcallback: function () {
  6702. if (!$("#aichat_icon")[0]) {
  6703. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6704. }
  6705. },
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _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); } }
  6708. break;
  6709. case "ainew": //AI共创
  6710. _formdiv = new U.UF.UI.form(
  6711. "AI协同",
  6712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6713. "id": "ainew",
  6714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _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); } }
  6720. break;
  6721. case "gpt4": //gpt4
  6722. _formdiv = new U.UF.UI.form(
  6723. "AI助手",
  6724. $$("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 }), {
  6725. "id": "gpt4",
  6726. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _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); } }
  6732. break;
  6733. case "aigpt": //gpt4
  6734. _formdiv = new U.UF.UI.form(
  6735. "AI助手+",
  6736. $$("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 }), {
  6737. "id": "aigpt",
  6738. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () {
  6742. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6743. }
  6744. }, { "style": { "height": "36px" } }).form; //创建窗体
  6745. _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); } }
  6746. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6747. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6748. })
  6749. break;
  6750. case "aiKnowledge": //aiKnowledge
  6751. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6752. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6753. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6754. }
  6755. _formdiv = new U.UF.UI.form(
  6756. "知识建构",
  6757. $$("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 }), {
  6758. "id": "aiKnowledge",
  6759. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6765. break;
  6766. case "futureClass": //AI共创
  6767. _formdiv = new U.UF.UI.form(
  6768. "协同建构",
  6769. $$("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
  6770. "id": "synergyCourse",
  6771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () {
  6775. $("iframe", _formdiv)[0].contentWindow.loginout();
  6776. }
  6777. }, { "style": { "height": "36px" } }).form; //创建窗体
  6778. _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); } }
  6779. break;
  6780. case "aiagent": //ai agent
  6781. _formdiv = new U.UF.UI.form(
  6782. "AI Agent",
  6783. $$("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" }), {
  6784. "id": "AIAgent",
  6785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6786. "onresize": function () { }
  6787. }, {
  6788. closecallback: function () { }
  6789. }, { "style": { "height": "36px" } }).form; //创建窗体
  6790. _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); } }
  6791. break;
  6792. case "dataBoard": //数据看板
  6793. _formdiv = new U.UF.UI.form(
  6794. "数据看板",
  6795. $$("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 }), {
  6796. "id": "dataBoard",
  6797. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6798. "onresize": function () { }
  6799. }, {
  6800. closecallback: function () { }
  6801. }, { "style": { "height": "36px" } }).form; //创建窗体
  6802. _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); } }
  6803. break;
  6804. case "dataBoardSies": //数据融合
  6805. _formdiv = new U.UF.UI.form(
  6806. "数据融合",
  6807. $$("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 }), {
  6808. "id": "dataBoardSies",
  6809. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6810. "onresize": function () { }
  6811. }, {
  6812. closecallback: function () { }
  6813. }, { "style": { "height": "36px" } }).form; //创建窗体
  6814. _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); } }
  6815. break;
  6816. case "dataBoardNew": //数据看板
  6817. _formdiv = new U.UF.UI.form(
  6818. "综合看板",
  6819. $$("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 }), {
  6820. "id": "dataBoardNew",
  6821. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //创建窗体
  6826. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6827. break;
  6828. case "dataBoardTest": //数据看板
  6829. _formdiv = new U.UF.UI.form(
  6830. "评测看板",
  6831. $$("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 }), {
  6832. "id": "dataBoardTest",
  6833. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //创建窗体
  6838. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6839. break;
  6840. case "AIAnalyse": //AI共创
  6841. _formdiv = new U.UF.UI.form(
  6842. "AI分析",
  6843. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6844. "id": "AIAnalyse",
  6845. "style": { "width": "100%", "height": "100%", "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/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6851. break;
  6852. case "studioCourse": //AI共创
  6853. _formdiv = new U.UF.UI.form(
  6854. "工作管理",
  6855. $$("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 }), {
  6856. "id": "studioCourse",
  6857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //创建窗体
  6862. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6863. break;
  6864. case "studioIndex": //AI共创
  6865. _formdiv = new U.UF.UI.form(
  6866. "工作中心",
  6867. $$("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 }), {
  6868. "id": "studioIndex",
  6869. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //创建窗体
  6874. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6875. break;
  6876. case "source":
  6877. _formdiv = new U.UF.UI.form(
  6878. "教学资源",
  6879. $$("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 }), {
  6880. "id": "source",
  6881. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //创建窗体
  6886. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6887. break;
  6888. case "testTeacher":
  6889. _formdiv = new U.UF.UI.form(
  6890. "智能表单",
  6891. $$("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 }), {
  6892. "id": "testTeacher",
  6893. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6894. "onresize": function () { }
  6895. }, {
  6896. closecallback: function () { }
  6897. }, { "style": { "height": "36px" } }).form; //创建窗体
  6898. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6899. break;
  6900. case "testStudent":
  6901. _formdiv = new U.UF.UI.form(
  6902. "教师中心",
  6903. $$("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 }), {
  6904. "id": "testStudent",
  6905. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //创建窗体
  6910. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6911. break;
  6912. case "testTeacherSies":
  6913. _formdiv = new U.UF.UI.form(
  6914. "教师管理",
  6915. $$("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 }), {
  6916. "id": "testTeacherSies",
  6917. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //创建窗体
  6922. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6923. break;
  6924. case "testStudentSies":
  6925. _formdiv = new U.UF.UI.form(
  6926. "教师中心",
  6927. $$("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 }), {
  6928. "id": "testStudentSies",
  6929. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6930. "onresize": function () { }
  6931. }, {
  6932. closecallback: function () { }
  6933. }, { "style": { "height": "36px" } }).form; //创建窗体
  6934. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6935. break;
  6936. case "ytpbl": //消息通知
  6937. _formdiv = new U.UF.UI.form(
  6938. "案例征集",
  6939. $$("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 }), {
  6940. "id": "ytpbl",
  6941. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6942. "onresize": function () { }
  6943. }, {
  6944. closecallback: function () { }
  6945. }, { "style": { "height": "36px" } }).form; //创建窗体
  6946. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6947. // 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");
  6948. break;
  6949. case "aiCourseResource": //人工智能窗体
  6950. _formdiv = new U.UF.UI.form(
  6951. false,
  6952. $$("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 }), {
  6953. "id": "aiCourseResource",
  6954. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6955. "onresize": function () { },
  6956. "isdrag": false,
  6957. }, {
  6958. closecallback: function () { }
  6959. }, { "style": { "height": "36px" } }).form; //创建窗体
  6960. _taskbar = ''
  6961. break;
  6962. case "szdjgCocooroboX": //图形化编程
  6963. _formdiv = new U.UF.UI.form(
  6964. "图形化编程",
  6965. $$("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" }), {
  6966. "id": "szdjgCocooroboX",
  6967. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6968. "onresize": function () { }
  6969. }, {
  6970. closecallback: function () { }
  6971. }, { "style": { "height": "36px" } }).form; //创建窗体
  6972. _taskbar = ''
  6973. break;
  6974. case "szdjgPython": //python编程
  6975. _formdiv = new U.UF.UI.form(
  6976. "Python编程",
  6977. $$("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" }), {
  6978. "id": "szdjgPython",
  6979. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6980. "onresize": function () { }
  6981. }, {
  6982. closecallback: function () { }
  6983. }, { "style": { "height": "36px" } }).form; //创建窗体
  6984. _taskbar = ''
  6985. break;
  6986. case "Record":
  6987. _formdiv = new U.UF.UI.form(
  6988. "观察记录",
  6989. $$("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 }), {
  6990. "id": "Record",
  6991. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6992. "onresize": function () { }
  6993. }, {
  6994. closecallback: function () { }
  6995. }, { "style": { "height": "36px" } }).form; //创建窗体
  6996. _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); } }
  6997. break;
  6998. case "aigptCourse":
  6999. _formdiv = new U.UF.UI.form(
  7000. "AI智能体",
  7001. $$("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' }), {
  7002. "id": "aigptCourse",
  7003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7004. "onresize": function () { }
  7005. }, {
  7006. closecallback: function () { }
  7007. }, { "style": { "height": "36px" } }).form; //创建窗体
  7008. _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); } }
  7009. break;
  7010. case "classroomObservation":
  7011. _formdiv = new U.UF.UI.form(
  7012. "课堂观察",
  7013. $$("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 }), {
  7014. "id": "classroomObservation",
  7015. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7016. "onresize": function () { }
  7017. }, {
  7018. closecallback: function () { }
  7019. }, { "style": { "height": "36px" } }).form; //创建窗体
  7020. _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); } }
  7021. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7022. break;
  7023. case "pblCourse":
  7024. _formdiv = new U.UF.UI.form(
  7025. "学生PBL",
  7026. $$("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 }), {
  7027. "id": "pblCourse",
  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/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7034. break;
  7035. case "appStore":
  7036. _formdiv = new U.UF.UI.form(
  7037. "CocoFlow",
  7038. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7039. "id": "appStore",
  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/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7046. break;
  7047. case "sassPlatform":
  7048. _formdiv = new U.UF.UI.form(
  7049. "Sass通用后台管理",
  7050. $$("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 }), {
  7051. "id": "sassPlatform",
  7052. "style": { "width": "90%", "height": "90%", "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/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7058. break;
  7059. case "EDU":
  7060. _formdiv = new U.UF.UI.form(
  7061. "EDU",
  7062. $$("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" }), {
  7063. "id": "EDU",
  7064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7065. "onresize": function () { }
  7066. }, {
  7067. closecallback: function () { }
  7068. }, { "style": { "height": "36px" } }).form; //创建窗体
  7069. _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); } }
  7070. break;
  7071. case "knowledge":
  7072. _formdiv = new U.UF.UI.form(
  7073. "知识库",
  7074. $$("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 }), {
  7075. "id": "knowledge",
  7076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7077. "onresize": function () { }
  7078. }, {
  7079. closecallback: function () { }
  7080. }, { "style": { "height": "36px" } }).form; //创建窗体
  7081. _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); } }
  7082. break;
  7083. case "userExamine":
  7084. _formdiv = new U.UF.UI.form(
  7085. "账号申请",
  7086. $$("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" }), {
  7087. "id": "userExamine",
  7088. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, { "style": { "height": "36px" } }).form; //创建窗体
  7093. break;
  7094. }
  7095. //U.MD.D.I.openClick(str);
  7096. //如果有任务栏信息
  7097. if (_taskbar) {
  7098. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7099. }
  7100. }
  7101. // U.MD.D.I.openClick = function(str){
  7102. // var click = '';
  7103. // switch(str){
  7104. // case 'friend':
  7105. // click = '我的好友';
  7106. // break;
  7107. // case 'domain':
  7108. // click = '域名管理';
  7109. // break;
  7110. // case 'disk':
  7111. // click = '我的云盘';
  7112. // break;
  7113. // case 'word':
  7114. // click = 'Word';
  7115. // break;
  7116. // case 'excel':
  7117. // click = 'Execl';
  7118. // break;
  7119. // case 'txt':
  7120. // click = '文本文件';
  7121. // break;
  7122. // case 'lookupFriend':
  7123. // click = '查找好友';
  7124. // break;
  7125. // case 'ftp':
  7126. // click = 'FTP';
  7127. // break;
  7128. // case 'group':
  7129. // click = '群组';
  7130. // break;
  7131. // case 'set':
  7132. // click = '我的设置';
  7133. // break;
  7134. // case 'systemSet':
  7135. // click = '系统设置';
  7136. // break;
  7137. // case 'boomYun':
  7138. // click = '互联办公';
  7139. // break;
  7140. // case 'xz':
  7141. // click = '云端下载';
  7142. // break;
  7143. // case 'client':
  7144. // click = '有思浏览器';
  7145. // break;
  7146. // case 'backEndProgramming':
  7147. // click = '在线后台编程';
  7148. // break;
  7149. // case 'frontEndProgramming':
  7150. // click = '在线前端编程';
  7151. // break;
  7152. // default: break;
  7153. // }
  7154. // if(U.MD.D.I.Ip && click){
  7155. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7156. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7157. // })
  7158. // }
  7159. // }
  7160. /**
  7161. *函数作用:ajax简易函数,使用post格式
  7162. *@param url {data} 后台地址
  7163. *@param data {data} 参数json
  7164. *@param fn {data} 回调函数
  7165. *
  7166. */
  7167. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7168. // var xhr = new XMLHttpRequest();
  7169. // xhr.open("GET",url,true);
  7170. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7171. // xhr.onreadystatechange = function(){
  7172. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7173. // fn.call(this,xhr.responseText);
  7174. // }
  7175. // };
  7176. // xhr.send();
  7177. // }
  7178. /*判断是否是内网IP*/
  7179. // U.MD.D.I.isInnerIPFn = function(str){
  7180. // var curPageUrl = str;
  7181. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7182. // curPageUrl =curPageUrl.replace(reg1,'');
  7183. // // console.log('curPageUrl-1 '+curPageUrl);
  7184. // var reg2 = /\:+/g;//替换冒号为一点
  7185. // curPageUrl =curPageUrl.replace(reg2,'.');
  7186. // // console.log('curPageUrl-2 '+curPageUrl);
  7187. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7188. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7189. // if(curPageUrl[2] != '16'){
  7190. // return ipAddress;
  7191. // }else{
  7192. // return false;
  7193. // }
  7194. // }
  7195. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7196. // //compatibility for firefox and chrome
  7197. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7198. // var pc = new myPeerConnection({
  7199. // iceServers: []
  7200. // }),
  7201. // noop = function() {},
  7202. // localIPs = {},
  7203. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7204. // key;
  7205. // function iterateIP(ip) {
  7206. // if (!localIPs[ip]) onNewIP(ip);
  7207. // localIPs[ip] = true;
  7208. // }
  7209. // //create a bogus data channel
  7210. // pc.createDataChannel("");
  7211. // // create offer and set local description
  7212. // pc.createOffer().then(function(sdp) {
  7213. // sdp.sdp.split('\n').forEach(function(line) {
  7214. // if (line.indexOf('candidate') < 0) return;
  7215. // line.match(ipRegex).forEach(iterateIP);
  7216. // });
  7217. // pc.setLocalDescription(sdp, noop, noop);
  7218. // }).catch(function(reason) {
  7219. // // An error occurred, so handle the failure to connect
  7220. // });
  7221. // //sten for candidate events
  7222. // pc.onicecandidate = function(ice) {
  7223. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7224. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7225. // };
  7226. // }
  7227. // U.MD.D.I.getUserIpBool = function(callback){
  7228. // U.MD.D.I.getUserIP(function(ip){
  7229. // alert("Got IP! :" + ip);
  7230. // });
  7231. //}
  7232. //#endregion
  7233. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7234. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7235. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7236. _userinfo = US.userInfo, //登录用户信息
  7237. _userid = US.userInfo.userid //登录用户id
  7238. let _iframe;
  7239. let _cid = cid,
  7240. _stage = stage,
  7241. _task = task,
  7242. _tool = tool;
  7243. var _jie = $$("div", {
  7244. "style": {
  7245. "position": "absolute",
  7246. "bottom": "50px",
  7247. "right": "50px",
  7248. "zIndex": "9999",
  7249. "backgroundColor": "#2268bc",
  7250. "color": "#fff",
  7251. "padding": "12px 20px",
  7252. "cursor": "pointer",
  7253. "borderRadius": "4px",
  7254. },
  7255. "innerHTML": "提交作业"
  7256. })
  7257. let aTool = ''
  7258. let _loading = document.createElement('div')
  7259. _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;"
  7260. // _loading.id = "";
  7261. let _lchild = document.createElement('div')
  7262. let _limg = document.createElement('img')
  7263. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7264. _limg.style = "width: 26px;margin-right: 10px;"
  7265. _lchild.appendChild(_limg)
  7266. let _lspan = document.createElement('span')
  7267. _lspan.innerHTML = "上传中..."
  7268. _lchild.appendChild(_lspan)
  7269. _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%);"
  7270. _loading.appendChild(_lchild)
  7271. var _box = $$('div', {
  7272. "style": {
  7273. "position": "relative",
  7274. "width": "100%",
  7275. "height": "100%",
  7276. },
  7277. })
  7278. _box.appendChild(_loading)
  7279. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7280. switch (str) {
  7281. case "whiteboard":
  7282. aTool = 1;
  7283. _iframe = $$("iframe", {
  7284. "frameborder": "no",
  7285. "border": "0",
  7286. "scrolling ": "no",
  7287. "style": {
  7288. "cssText": "border:0;width:100%;height:100%"
  7289. },
  7290. "src": "https://beta.iwb.cocorobo.cn/"
  7291. })
  7292. _box.appendChild(_iframe);
  7293. _box.appendChild(_jie);
  7294. _formdiv = new U.UF.UI.form(
  7295. "电子白板",
  7296. _box, {
  7297. "id": "whiteboard" + cid + stage + task + tool,
  7298. "style": {
  7299. "width": "90%",
  7300. "height": "90%",
  7301. "overflow": 'hidden'
  7302. },
  7303. "onresize": function () { }
  7304. }, {
  7305. closecallback: function () { }
  7306. }, {
  7307. "style": {
  7308. "height": "36px"
  7309. }
  7310. }).form; //创建窗体
  7311. _taskbar = {
  7312. "id": str + _formdiv.id,
  7313. "style": {
  7314. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7315. },
  7316. "name": "电子白板",
  7317. "forms": _formdiv,
  7318. "click": function () {
  7319. U.MD.D.I.openApplication(str, obj, info);
  7320. }
  7321. }
  7322. break;
  7323. case "mind":
  7324. aTool = 3;
  7325. _iframe = $$("iframe", {
  7326. "frameborder": "no",
  7327. "border": "0",
  7328. "scrolling ": "no",
  7329. "style": {
  7330. "cssText": "border:0;width:100%;height:100%"
  7331. },
  7332. "src": "/kityminder-editor/dist/index.html"
  7333. })
  7334. _box.appendChild(_iframe);
  7335. _box.appendChild(_jie);
  7336. _formdiv = new U.UF.UI.form(
  7337. "思维导图",
  7338. _box, { //"/jsmind/example/demo.html"
  7339. "id": "mind" + cid + stage + task + tool,
  7340. "style": {
  7341. "width": "90%",
  7342. "height": "90%",
  7343. "overflow": 'hidden'
  7344. },
  7345. "onresize": function () { }
  7346. }, {
  7347. closecallback: function () { }
  7348. }, {
  7349. "style": {
  7350. "height": "36px"
  7351. }
  7352. }).form; //创建窗体
  7353. _taskbar = {
  7354. "id": str + _formdiv.id,
  7355. "style": {
  7356. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7357. },
  7358. "name": "思维导图",
  7359. "forms": _formdiv,
  7360. "click": function () {
  7361. U.MD.D.I.openApplication(str, obj, info);
  7362. }
  7363. }
  7364. break;
  7365. case "MindMap":
  7366. aTool = 3;
  7367. _iframe = $$("iframe", {
  7368. "frameborder": "no",
  7369. "border": "0",
  7370. "scrolling ": "no",
  7371. "style": {
  7372. "cssText": "border:0;width:100%;height:100%"
  7373. },
  7374. "src": "//cloud.cocorobo.cn/mind/"
  7375. })
  7376. _box.appendChild(_iframe);
  7377. _box.appendChild(_jie);
  7378. _formdiv = new U.UF.UI.form(
  7379. "思维导图",
  7380. _box, { //"/jsmind/example/demo.html"
  7381. "id": "mind" + cid + stage + task + tool,
  7382. "style": {
  7383. "width": "90%",
  7384. "height": "90%",
  7385. "overflow": 'hidden'
  7386. },
  7387. "onresize": function () { }
  7388. }, {
  7389. closecallback: function () { }
  7390. }, {
  7391. "style": {
  7392. "height": "36px"
  7393. }
  7394. }).form; //创建窗体
  7395. _taskbar = {
  7396. "id": str + _formdiv.id,
  7397. "style": {
  7398. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7399. },
  7400. "name": "思维导图",
  7401. "forms": _formdiv,
  7402. "click": function () {
  7403. U.MD.D.I.openApplication(str, obj, info);
  7404. }
  7405. }
  7406. break;
  7407. case "doc":
  7408. aTool = 6;
  7409. _iframe = $$("iframe", {
  7410. "frameborder": "no",
  7411. "border": "0",
  7412. "scrolling ": "no",
  7413. "style": {
  7414. "cssText": "border:0;width:100%;height:100%"
  7415. },
  7416. "src": "/Office/Word/WordEditArea.htm"
  7417. })
  7418. _box.appendChild(_iframe);
  7419. _box.appendChild(_jie);
  7420. _formdiv = new U.UF.UI.form(
  7421. "协同文档",
  7422. _box, {
  7423. "id": "doc" + cid + stage + task + tool,
  7424. "style": {
  7425. "width": "90%",
  7426. "height": "90%",
  7427. "overflow": 'hidden'
  7428. },
  7429. "onresize": function () { }
  7430. }, {
  7431. closecallback: function () { }
  7432. }, {
  7433. "style": {
  7434. "height": "36px"
  7435. }
  7436. }).form; //创建窗体
  7437. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7438. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7439. })
  7440. _taskbar = {
  7441. "id": str + _formdiv.id,
  7442. "style": {
  7443. "backgroundImage": "url(/img/icon/doc.png)"
  7444. },
  7445. "name": "协同文档",
  7446. "forms": _formdiv,
  7447. "click": function () {
  7448. U.MD.D.I.openApplication(str, obj, info);
  7449. }
  7450. }
  7451. break;
  7452. case "mindNetwork": //好友打开
  7453. aTool = 7;
  7454. _iframe = $$("iframe", {
  7455. "webkitallowfullscreen": "",
  7456. "mozallowfullscreen": "",
  7457. "allowfullscreen": "",
  7458. "frameborder": "no",
  7459. "border": "0",
  7460. "scrolling ": "no",
  7461. "style": {
  7462. "cssText": "border:0; width:100%; height:100%;"
  7463. },
  7464. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7465. })
  7466. _box.appendChild(_iframe);
  7467. _box.appendChild(_jie);
  7468. _formdiv = new U.UF.UI.form(
  7469. "思维网格",
  7470. _box, {
  7471. "id": "mindNetwork" + cid + stage + task + tool,
  7472. "style": {
  7473. "width": "90%",
  7474. "height": "90%",
  7475. "overflow": 'hidden'
  7476. },
  7477. "onresize": function () { }
  7478. }, {
  7479. closecallback: function () { }
  7480. }, {
  7481. "style": {
  7482. "height": "36px"
  7483. }
  7484. }).form; //创建窗体
  7485. _taskbar = {
  7486. "id": str + _formdiv.id,
  7487. "style": {
  7488. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7489. },
  7490. "name": "思维网格",
  7491. "forms": _formdiv,
  7492. "click": function () {
  7493. U.MD.D.I.openApplication(str, obj, info);
  7494. }
  7495. }
  7496. break;
  7497. case "courseDesign":
  7498. _iframe = $$("iframe", {
  7499. "webkitallowfullscreen": "",
  7500. "mozallowfullscreen": "",
  7501. "allowfullscreen": "",
  7502. "frameborder": "no",
  7503. "border": "0",
  7504. "scrolling ": "no",
  7505. "style": {
  7506. "cssText": "border:0; width:100%; height:100%;"
  7507. },
  7508. "src": "/course-design-vue"
  7509. })
  7510. _box.appendChild(_iframe);
  7511. _box.appendChild(_jie);
  7512. _formdiv = new U.UF.UI.form(
  7513. "项目设计",
  7514. _box, {
  7515. "id": "courseDesign" + cid + stage + task + tool,
  7516. "style": {
  7517. "width": "90%",
  7518. "height": "90%",
  7519. "overflow": 'hidden'
  7520. },
  7521. "onresize": function () { }
  7522. }, {
  7523. closecallback: function () { }
  7524. }, {
  7525. "style": {
  7526. "height": "36px"
  7527. }
  7528. }).form; //创建窗体
  7529. _taskbar = {
  7530. "id": str + _formdiv.id,
  7531. "style": {
  7532. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7533. },
  7534. "name": "项目设计",
  7535. "forms": _formdiv,
  7536. "click": function () {
  7537. U.MD.D.I.openApplication(str, obj, info);
  7538. }
  7539. }
  7540. break;
  7541. }
  7542. const script1 = document.createElement("script");
  7543. script1.type = "text/javascript";
  7544. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7545. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7546. const script2 = document.createElement("script");
  7547. script2.type = "text/javascript";
  7548. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7549. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7550. const script3 = document.createElement("script");
  7551. script3.type = "text/javascript";
  7552. script3.charset = "UTF-8";
  7553. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7554. const script4 = document.createElement("script");
  7555. script4.type = "text/javascript";
  7556. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7557. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7558. if (_iframe) {
  7559. if (str == 'doc') {
  7560. _iframe = _formdiv.querySelector('iframe')
  7561. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7562. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7563. _iframe.contentWindow.document.body.appendChild(script1);
  7564. _iframe.contentWindow.document.body.appendChild(script2);
  7565. // _iframe.contentWindow.document.body.appendChild(script3);
  7566. _iframe.contentWindow.document.body.appendChild(script4);
  7567. })
  7568. if (onloadListener) {
  7569. _iframe.contentDocument.location.reload()
  7570. } else {
  7571. _iframe.contentDocument.location.reload()
  7572. }
  7573. } else if (str == 'courseDesign') {
  7574. U.UF.DL.iframeLoad(_iframe, function () {
  7575. // _iframe.contentWindow.U.MD.O.W.load();
  7576. // _iframe.contentWindow.document.body.appendChild(script1);
  7577. _iframe.contentWindow.document.body.appendChild(script2);
  7578. _iframe.contentWindow.document.body.appendChild(script4);
  7579. })
  7580. } else if (str == 'mind') {
  7581. _iframe = _formdiv.querySelector('iframe')
  7582. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7583. //
  7584. _iframe.contentWindow.document.body.appendChild(script1);
  7585. _iframe.contentWindow.document.body.appendChild(script2);
  7586. _iframe.contentWindow.document.body.appendChild(script4);
  7587. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7588. })
  7589. if (onloadListener) {
  7590. _iframe.contentDocument.location.reload()
  7591. } else {
  7592. _iframe.contentDocument.location.reload()
  7593. }
  7594. } else if (str == 'whiteboard') {
  7595. _iframe = _formdiv.querySelector('iframe')
  7596. let onloadListener = _iframe.onload = () => {
  7597. _iframe.contentWindow.document.body.appendChild(script1);
  7598. _iframe.contentWindow.document.body.appendChild(script2);
  7599. _iframe.contentWindow.document.body.appendChild(script4);
  7600. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7601. };
  7602. // if (onloadListener) {
  7603. // try {
  7604. // _iframe.src += "?cocorobo="+new Date().getTime()
  7605. // _iframe.contentWindow.document.location.reload()
  7606. // } catch (error) {
  7607. // }
  7608. // } else {
  7609. // _iframe.contentDocument.location.reload()
  7610. // }
  7611. } else {
  7612. _iframe.onload = () => {
  7613. _iframe.contentWindow.document.body.appendChild(script1);
  7614. _iframe.contentWindow.document.body.appendChild(script2);
  7615. // _iframe.contentWindow.document.body.appendChild(script3);
  7616. _iframe.contentWindow.document.body.appendChild(script4);
  7617. };
  7618. }
  7619. _jie.onclick = async () => {
  7620. let text = ''
  7621. if (aTool == 1) {
  7622. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7623. } else if (aTool == 6) {
  7624. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7625. } else if (aTool == 3) {
  7626. text = await U.MD.D.I.getEditorContent(_iframe);
  7627. }
  7628. _loading.style.display = 'flex'
  7629. console.log(_loading);
  7630. var _ajs = _iframe.contentWindow.document.createElement("script");
  7631. _ajs.type = "text/javascript";
  7632. _ajs.innerHTML =
  7633. // 'console.log(' + _loading + ');\n' +
  7634. 'var _js = document.createElement("script");\n' +
  7635. '_js.type="text/javascript";\n' +
  7636. '_js.charset="UTF-8";\n' +
  7637. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7638. "_js.onload = function(){\n" +
  7639. ' var a = document.getElementsByTagName("img")\n' +
  7640. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7641. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7642. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7643. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7644. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7645. "beforeUpload_shishi(file," +
  7646. "'" +
  7647. _userid +
  7648. "'" +
  7649. ", " +
  7650. "'" +
  7651. _cid +
  7652. "'" +
  7653. ", " +
  7654. "'" +
  7655. _stage +
  7656. "'" +
  7657. ", " +
  7658. "'" +
  7659. _task +
  7660. "'" +
  7661. ", " +
  7662. "'" +
  7663. _tool +
  7664. "'" +
  7665. ", " +
  7666. "'" +
  7667. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7668. "'" +
  7669. ", " +
  7670. "'" +
  7671. aTool +
  7672. "'" +
  7673. ", " +
  7674. "`" +
  7675. text +
  7676. "`" +
  7677. ")\n" +
  7678. " });\n" +
  7679. "}\n" +
  7680. "document.head.appendChild(_js);\n";
  7681. _iframe.contentWindow.document.head.appendChild(_ajs);
  7682. }
  7683. }
  7684. //U.MD.D.I.openClick(str);
  7685. //如果有任务栏信息
  7686. // if (_taskbar) {
  7687. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7688. // }
  7689. }
  7690. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7691. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7692. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7693. _userinfo = US.userInfo, //登录用户信息
  7694. _userid = US.userInfo.userid //登录用户id
  7695. let _iframe;
  7696. let _cid = cid,
  7697. _stage = stage,
  7698. _task = task,
  7699. _tool = tool;
  7700. var _jie = $$("div", {
  7701. "style": {
  7702. "position": "absolute",
  7703. "bottom": "50px",
  7704. "right": "50px",
  7705. "zIndex": "9999",
  7706. "backgroundColor": "#2268bc",
  7707. "color": "#fff",
  7708. "padding": "12px 20px",
  7709. "cursor": "pointer",
  7710. "borderRadius": "4px",
  7711. },
  7712. "innerHTML": "提交作业"
  7713. })
  7714. let aTool = ''
  7715. let _loading = document.createElement('div')
  7716. _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;"
  7717. // _loading.id = "";
  7718. let _lchild = document.createElement('div')
  7719. let _limg = document.createElement('img')
  7720. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7721. _limg.style = "width: 26px;margin-right: 10px;"
  7722. _lchild.appendChild(_limg)
  7723. let _lspan = document.createElement('span')
  7724. _lspan.innerHTML = "上传中..."
  7725. _lchild.appendChild(_lspan)
  7726. _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%);"
  7727. _loading.appendChild(_lchild)
  7728. let _box = $$('div', {
  7729. "style": {
  7730. "position": "relative",
  7731. "width": "100%",
  7732. "height": "100%",
  7733. },
  7734. })
  7735. _box.appendChild(_loading)
  7736. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7737. switch (str) {
  7738. case "whiteboard":
  7739. aTool = 1;
  7740. _iframe = $$("iframe", {
  7741. "frameborder": "no",
  7742. "border": "0",
  7743. "scrolling ": "no",
  7744. "style": {
  7745. "cssText": "border:0;width:100%;height:100%"
  7746. },
  7747. "src": "https://beta.iwb.cocorobo.cn/"
  7748. })
  7749. _box.appendChild(_iframe);
  7750. _box.appendChild(_jie);
  7751. _formdiv = new U.UF.UI.form(
  7752. "电子白板",
  7753. _box, {
  7754. "id": "whiteboard" + cid + stage + task + tool,
  7755. "style": {
  7756. "width": "90%",
  7757. "height": "90%",
  7758. "overflow": 'hidden'
  7759. },
  7760. "onresize": function () { }
  7761. }, {
  7762. closecallback: function () { }
  7763. }, {
  7764. "style": {
  7765. "height": "36px"
  7766. }
  7767. }).form; //创建窗体
  7768. _taskbar = {
  7769. "id": str + _formdiv.id,
  7770. "style": {
  7771. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7772. },
  7773. "name": "电子白板",
  7774. "forms": _formdiv,
  7775. "click": function () {
  7776. U.MD.D.I.openApplication(str, obj, info);
  7777. }
  7778. }
  7779. break;
  7780. case "mind":
  7781. aTool = 3;
  7782. _iframe = $$("iframe", {
  7783. "frameborder": "no",
  7784. "border": "0",
  7785. "scrolling ": "no",
  7786. "style": {
  7787. "cssText": "border:0;width:100%;height:100%"
  7788. },
  7789. "src": "/kityminder-editor/dist/index.html"
  7790. })
  7791. _box.appendChild(_iframe);
  7792. _box.appendChild(_jie);
  7793. _formdiv = new U.UF.UI.form(
  7794. "思维导图",
  7795. _box, { //"/jsmind/example/demo.html"
  7796. "id": "mind" + cid + stage + task + tool,
  7797. "style": {
  7798. "width": "90%",
  7799. "height": "90%",
  7800. "overflow": 'hidden'
  7801. },
  7802. "onresize": function () { }
  7803. }, {
  7804. closecallback: function () { }
  7805. }, {
  7806. "style": {
  7807. "height": "36px"
  7808. }
  7809. }).form; //创建窗体
  7810. _taskbar = {
  7811. "id": str + _formdiv.id,
  7812. "style": {
  7813. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7814. },
  7815. "name": "思维导图",
  7816. "forms": _formdiv,
  7817. "click": function () {
  7818. U.MD.D.I.openApplication(str, obj, info);
  7819. }
  7820. }
  7821. break;
  7822. case "MindMap":
  7823. aTool = 3;
  7824. _iframe = $$("iframe", {
  7825. "frameborder": "no",
  7826. "border": "0",
  7827. "scrolling ": "no",
  7828. "style": {
  7829. "cssText": "border:0;width:100%;height:100%"
  7830. },
  7831. "src": "//cloud.cocorobo.cn/mind/"
  7832. })
  7833. _box.appendChild(_iframe);
  7834. _box.appendChild(_jie);
  7835. _formdiv = new U.UF.UI.form(
  7836. "思维导图",
  7837. _box, { //"/jsmind/example/demo.html"
  7838. "id": "mind" + cid + stage + task + tool,
  7839. "style": {
  7840. "width": "90%",
  7841. "height": "90%",
  7842. "overflow": 'hidden'
  7843. },
  7844. "onresize": function () { }
  7845. }, {
  7846. closecallback: function () { }
  7847. }, {
  7848. "style": {
  7849. "height": "36px"
  7850. }
  7851. }).form; //创建窗体
  7852. _taskbar = {
  7853. "id": str + _formdiv.id,
  7854. "style": {
  7855. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7856. },
  7857. "name": "思维导图",
  7858. "forms": _formdiv,
  7859. "click": function () {
  7860. U.MD.D.I.openApplication(str, obj, info);
  7861. }
  7862. }
  7863. break;
  7864. case "doc":
  7865. aTool = 6;
  7866. _iframe = $$("iframe", {
  7867. "frameborder": "no",
  7868. "border": "0",
  7869. "scrolling ": "no",
  7870. "style": {
  7871. "cssText": "border:0;width:100%;height:100%"
  7872. },
  7873. "src": "/Office/Word/WordEditArea.htm"
  7874. })
  7875. _box.appendChild(_iframe);
  7876. _box.appendChild(_jie);
  7877. _formdiv = new U.UF.UI.form(
  7878. "协同文档",
  7879. _box, {
  7880. "id": "doc" + cid + stage + task + tool,
  7881. "style": {
  7882. "width": "90%",
  7883. "height": "90%",
  7884. "overflow": 'hidden'
  7885. },
  7886. "onresize": function () { }
  7887. }, {
  7888. closecallback: function () { }
  7889. }, {
  7890. "style": {
  7891. "height": "36px"
  7892. }
  7893. }).form; //创建窗体
  7894. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7895. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7896. })
  7897. _taskbar = {
  7898. "id": str + _formdiv.id,
  7899. "style": {
  7900. "backgroundImage": "url(/img/icon/doc.png)"
  7901. },
  7902. "name": "协同文档",
  7903. "forms": _formdiv,
  7904. "click": function () {
  7905. U.MD.D.I.openApplication(str, obj, info);
  7906. }
  7907. }
  7908. break;
  7909. case "mindNetwork": //好友打开
  7910. aTool = 7;
  7911. _iframe = $$("iframe", {
  7912. "webkitallowfullscreen": "",
  7913. "mozallowfullscreen": "",
  7914. "allowfullscreen": "",
  7915. "frameborder": "no",
  7916. "border": "0",
  7917. "scrolling ": "no",
  7918. "style": {
  7919. "cssText": "border:0; width:100%; height:100%;"
  7920. },
  7921. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7922. })
  7923. _box.appendChild(_iframe);
  7924. _box.appendChild(_jie);
  7925. _formdiv = new U.UF.UI.form(
  7926. "思维网格",
  7927. _box, {
  7928. "id": "mindNetwork" + cid + stage + task + tool,
  7929. "style": {
  7930. "width": "90%",
  7931. "height": "90%",
  7932. "overflow": 'hidden'
  7933. },
  7934. "onresize": function () { }
  7935. }, {
  7936. closecallback: function () { }
  7937. }, {
  7938. "style": {
  7939. "height": "36px"
  7940. }
  7941. }).form; //创建窗体
  7942. _taskbar = {
  7943. "id": str + _formdiv.id,
  7944. "style": {
  7945. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7946. },
  7947. "name": "思维网格",
  7948. "forms": _formdiv,
  7949. "click": function () {
  7950. U.MD.D.I.openApplication(str, obj, info);
  7951. }
  7952. }
  7953. break;
  7954. case "courseDesign":
  7955. _iframe = $$("iframe", {
  7956. "webkitallowfullscreen": "",
  7957. "mozallowfullscreen": "",
  7958. "allowfullscreen": "",
  7959. "frameborder": "no",
  7960. "border": "0",
  7961. "scrolling ": "no",
  7962. "style": {
  7963. "cssText": "border:0; width:100%; height:100%;"
  7964. },
  7965. "src": "/course-design-vue"
  7966. })
  7967. _box.appendChild(_iframe);
  7968. _box.appendChild(_jie);
  7969. _formdiv = new U.UF.UI.form(
  7970. "项目设计",
  7971. _box, {
  7972. "id": "courseDesign" + cid + stage + task + tool,
  7973. "style": {
  7974. "width": "90%",
  7975. "height": "90%",
  7976. "overflow": 'hidden'
  7977. },
  7978. "onresize": function () { }
  7979. }, {
  7980. closecallback: function () { }
  7981. }, {
  7982. "style": {
  7983. "height": "36px"
  7984. }
  7985. }).form; //创建窗体
  7986. _taskbar = {
  7987. "id": str + _formdiv.id,
  7988. "style": {
  7989. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7990. },
  7991. "name": "项目设计",
  7992. "forms": _formdiv,
  7993. "click": function () {
  7994. U.MD.D.I.openApplication(str, obj, info);
  7995. }
  7996. }
  7997. break;
  7998. }
  7999. const script1 = document.createElement("script");
  8000. script1.type = "text/javascript";
  8001. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8002. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8003. const script2 = document.createElement("script");
  8004. script2.type = "text/javascript";
  8005. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8006. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8007. const script3 = document.createElement("script");
  8008. script3.type = "text/javascript";
  8009. script3.charset = "UTF-8";
  8010. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8011. const script4 = document.createElement("script");
  8012. script4.type = "text/javascript";
  8013. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8014. script4.src = window.origin + "/js/Common/jietu2E.js";
  8015. if (_iframe) {
  8016. if (str == 'doc') {
  8017. _iframe = _formdiv.querySelector('iframe')
  8018. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8019. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8020. _iframe.contentWindow.document.body.appendChild(script1);
  8021. _iframe.contentWindow.document.body.appendChild(script2);
  8022. // _iframe.contentWindow.document.body.appendChild(script3);
  8023. _iframe.contentWindow.document.body.appendChild(script4);
  8024. })
  8025. if (onloadListener) {
  8026. _iframe.contentDocument.location.reload()
  8027. } else {
  8028. _iframe.contentDocument.location.reload()
  8029. }
  8030. } else if (str == 'courseDesign') {
  8031. U.UF.DL.iframeLoad(_iframe, function () {
  8032. // _iframe.contentWindow.U.MD.O.W.load();
  8033. // _iframe.contentWindow.document.body.appendChild(script1);
  8034. _iframe.contentWindow.document.body.appendChild(script2);
  8035. _iframe.contentWindow.document.body.appendChild(script4);
  8036. })
  8037. } else if (str == 'mind') {
  8038. _iframe = _formdiv.querySelector('iframe')
  8039. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8040. //
  8041. _iframe.contentWindow.document.body.appendChild(script1);
  8042. _iframe.contentWindow.document.body.appendChild(script2);
  8043. _iframe.contentWindow.document.body.appendChild(script4);
  8044. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8045. })
  8046. if (onloadListener) {
  8047. _iframe.contentDocument.location.reload()
  8048. } else {
  8049. _iframe.contentDocument.location.reload()
  8050. }
  8051. } else if (str == 'whiteboard') {
  8052. _iframe = _formdiv.querySelector('iframe')
  8053. let onloadListener = _iframe.onload = () => {
  8054. _iframe.contentWindow.document.body.appendChild(script1);
  8055. _iframe.contentWindow.document.body.appendChild(script2);
  8056. _iframe.contentWindow.document.body.appendChild(script4);
  8057. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8058. };
  8059. // if (onloadListener) {
  8060. // try {
  8061. // _iframe.src += "?cocorobo="+new Date().getTime()
  8062. // _iframe.contentWindow.document.location.reload()
  8063. // } catch (error) {
  8064. // }
  8065. // } else {
  8066. // _iframe.contentDocument.location.reload()
  8067. // }
  8068. } else {
  8069. _iframe.onload = () => {
  8070. _iframe.contentWindow.document.body.appendChild(script1);
  8071. _iframe.contentWindow.document.body.appendChild(script2);
  8072. // _iframe.contentWindow.document.body.appendChild(script3);
  8073. _iframe.contentWindow.document.body.appendChild(script4);
  8074. };
  8075. }
  8076. _jie.onclick = async () => {
  8077. let text = ''
  8078. if (aTool == 1) {
  8079. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8080. } else if (aTool == 6) {
  8081. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8082. } else if (aTool == 3) {
  8083. text = await U.MD.D.I.getEditorContent(_iframe);
  8084. }
  8085. _loading.style.display = 'flex'
  8086. console.log(_loading);
  8087. var _ajs = _iframe.contentWindow.document.createElement("script");
  8088. _ajs.type = "text/javascript";
  8089. _ajs.innerHTML =
  8090. // 'console.log(' + _loading + ');\n' +
  8091. 'var _js = document.createElement("script");\n' +
  8092. '_js.type="text/javascript";\n' +
  8093. '_js.charset="UTF-8";\n' +
  8094. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8095. "_js.onload = function(){\n" +
  8096. ' var a = document.getElementsByTagName("img")\n' +
  8097. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8098. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8099. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8100. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8101. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8102. "beforeUpload_shishi(file," +
  8103. "'" +
  8104. _userid +
  8105. "'" +
  8106. ", " +
  8107. "'" +
  8108. _cid +
  8109. "'" +
  8110. ", " +
  8111. "'" +
  8112. _stage +
  8113. "'" +
  8114. ", " +
  8115. "'" +
  8116. _task +
  8117. "'" +
  8118. ", " +
  8119. "'" +
  8120. _tool +
  8121. "'" +
  8122. ", " +
  8123. "'" +
  8124. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8125. "'" +
  8126. ", " +
  8127. "'" +
  8128. aTool +
  8129. "'" +
  8130. ", " +
  8131. "`" +
  8132. text +
  8133. "`" +
  8134. ")\n" +
  8135. " });\n" +
  8136. "}\n" +
  8137. "document.head.appendChild(_js);\n";
  8138. _iframe.contentWindow.document.head.appendChild(_ajs);
  8139. }
  8140. }
  8141. //U.MD.D.I.openClick(str);
  8142. //如果有任务栏信息
  8143. // if (_taskbar) {
  8144. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8145. // }
  8146. }
  8147. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8148. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8149. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8150. _userid = student.userid, //登录用户id
  8151. _username = student.student //用户名字
  8152. let _iframe;
  8153. let _cid = cid,
  8154. _stage = stage,
  8155. _task = task,
  8156. _tool = tool;
  8157. var _jie = $$("div", {
  8158. "style": {
  8159. "position": "absolute",
  8160. "bottom": "50px",
  8161. "right": "50px",
  8162. "zIndex": "9999",
  8163. "backgroundColor": "#2268bc",
  8164. "color": "#fff",
  8165. "padding": "12px 20px",
  8166. "cursor": "pointer",
  8167. "borderRadius": "4px",
  8168. },
  8169. "innerHTML": "提交作业"
  8170. })
  8171. let aTool = ''
  8172. let _loading = document.createElement('div')
  8173. _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;"
  8174. // _loading.id = "";
  8175. let _lchild = document.createElement('div')
  8176. let _limg = document.createElement('img')
  8177. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8178. _limg.style = "width: 26px;margin-right: 10px;"
  8179. _lchild.appendChild(_limg)
  8180. let _lspan = document.createElement('span')
  8181. _lspan.innerHTML = "上传中..."
  8182. _lchild.appendChild(_lspan)
  8183. _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%);"
  8184. _loading.appendChild(_lchild)
  8185. var _box = $$('div', {
  8186. "style": {
  8187. "position": "relative",
  8188. "width": "100%",
  8189. "height": "100%",
  8190. },
  8191. })
  8192. _box.appendChild(_loading)
  8193. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8194. switch (str) {
  8195. case "whiteboard":
  8196. aTool = 1;
  8197. _iframe = $$("iframe", {
  8198. "frameborder": "no",
  8199. "border": "0",
  8200. "scrolling ": "no",
  8201. "style": {
  8202. "cssText": "border:0;width:100%;height:100%"
  8203. },
  8204. "src": "https://beta.iwb.cocorobo.cn/"
  8205. })
  8206. _box.appendChild(_iframe);
  8207. _box.appendChild(_jie);
  8208. _formdiv = new U.UF.UI.form(
  8209. "电子白板-" + _username,
  8210. _box, {
  8211. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8212. "style": {
  8213. "width": "90%",
  8214. "height": "90%",
  8215. "overflow": 'hidden'
  8216. },
  8217. "onresize": function () { }
  8218. }, {
  8219. closecallback: function () { }
  8220. }, {
  8221. "style": {
  8222. "height": "36px"
  8223. }
  8224. }).form; //创建窗体
  8225. _taskbar = {
  8226. "id": str + _formdiv.id,
  8227. "style": {
  8228. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8229. },
  8230. "name": "电子白板",
  8231. "forms": _formdiv,
  8232. "click": function () {
  8233. U.MD.D.I.openApplication(str, obj, info);
  8234. }
  8235. }
  8236. break;
  8237. case "mind":
  8238. aTool = 3;
  8239. _iframe = $$("iframe", {
  8240. "frameborder": "no",
  8241. "border": "0",
  8242. "scrolling ": "no",
  8243. "style": {
  8244. "cssText": "border:0;width:100%;height:100%"
  8245. },
  8246. "src": "/kityminder-editor/dist/index.html"
  8247. })
  8248. _box.appendChild(_iframe);
  8249. _box.appendChild(_jie);
  8250. _formdiv = new U.UF.UI.form(
  8251. "思维导图-" + _username,
  8252. _box, { //"/jsmind/example/demo.html"
  8253. "id": "mind" + cid + stage + task + tool + _userid,
  8254. "style": {
  8255. "width": "90%",
  8256. "height": "90%",
  8257. "overflow": 'hidden'
  8258. },
  8259. "onresize": function () { }
  8260. }, {
  8261. closecallback: function () { }
  8262. }, {
  8263. "style": {
  8264. "height": "36px"
  8265. }
  8266. }).form; //创建窗体
  8267. _taskbar = {
  8268. "id": str + _formdiv.id,
  8269. "style": {
  8270. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8271. },
  8272. "name": "思维导图",
  8273. "forms": _formdiv,
  8274. "click": function () {
  8275. U.MD.D.I.openApplication(str, obj, info);
  8276. }
  8277. }
  8278. break;
  8279. case "MindMap":
  8280. aTool = 3;
  8281. _iframe = $$("iframe", {
  8282. "frameborder": "no",
  8283. "border": "0",
  8284. "scrolling ": "no",
  8285. "style": {
  8286. "cssText": "border:0;width:100%;height:100%"
  8287. },
  8288. "src": "//cloud.cocorobo.cn/mind/"
  8289. })
  8290. _box.appendChild(_iframe);
  8291. _box.appendChild(_jie);
  8292. _formdiv = new U.UF.UI.form(
  8293. "思维导图-" + _username,
  8294. _box, { //"/jsmind/example/demo.html"
  8295. "id": "mind" + cid + stage + task + tool + _userid,
  8296. "style": {
  8297. "width": "90%",
  8298. "height": "90%",
  8299. "overflow": 'hidden'
  8300. },
  8301. "onresize": function () { }
  8302. }, {
  8303. closecallback: function () { }
  8304. }, {
  8305. "style": {
  8306. "height": "36px"
  8307. }
  8308. }).form; //创建窗体
  8309. _taskbar = {
  8310. "id": str + _formdiv.id,
  8311. "style": {
  8312. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8313. },
  8314. "name": "思维导图",
  8315. "forms": _formdiv,
  8316. "click": function () {
  8317. U.MD.D.I.openApplication(str, obj, info);
  8318. }
  8319. }
  8320. break;
  8321. case "doc":
  8322. aTool = 6;
  8323. _iframe = $$("iframe", {
  8324. "frameborder": "no",
  8325. "border": "0",
  8326. "scrolling ": "no",
  8327. "style": {
  8328. "cssText": "border:0;width:100%;height:100%"
  8329. },
  8330. "src": "/Office/Word/WordEditArea.htm"
  8331. })
  8332. _box.appendChild(_iframe);
  8333. _box.appendChild(_jie);
  8334. _formdiv = new U.UF.UI.form(
  8335. "协同文档-" + _username,
  8336. _box, {
  8337. "id": "doc" + cid + stage + task + tool + _userid,
  8338. "style": {
  8339. "width": "90%",
  8340. "height": "90%",
  8341. "overflow": 'hidden'
  8342. },
  8343. "onresize": function () { }
  8344. }, {
  8345. closecallback: function () { }
  8346. }, {
  8347. "style": {
  8348. "height": "36px"
  8349. }
  8350. }).form; //创建窗体
  8351. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8352. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8353. })
  8354. _taskbar = {
  8355. "id": str + _formdiv.id,
  8356. "style": {
  8357. "backgroundImage": "url(/img/icon/doc.png)"
  8358. },
  8359. "name": "协同文档",
  8360. "forms": _formdiv,
  8361. "click": function () {
  8362. U.MD.D.I.openApplication(str, obj, info);
  8363. }
  8364. }
  8365. break;
  8366. case "mindNetwork": //好友打开
  8367. aTool = 7;
  8368. _iframe = $$("iframe", {
  8369. "webkitallowfullscreen": "",
  8370. "mozallowfullscreen": "",
  8371. "allowfullscreen": "",
  8372. "frameborder": "no",
  8373. "border": "0",
  8374. "scrolling ": "no",
  8375. "style": {
  8376. "cssText": "border:0; width:100%; height:100%;"
  8377. },
  8378. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8379. })
  8380. _box.appendChild(_iframe);
  8381. _box.appendChild(_jie);
  8382. _formdiv = new U.UF.UI.form(
  8383. "思维网格-" + _username,
  8384. _box, {
  8385. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8386. "style": {
  8387. "width": "90%",
  8388. "height": "90%",
  8389. "overflow": 'hidden'
  8390. },
  8391. "onresize": function () { }
  8392. }, {
  8393. closecallback: function () { }
  8394. }, {
  8395. "style": {
  8396. "height": "36px"
  8397. }
  8398. }).form; //创建窗体
  8399. _taskbar = {
  8400. "id": str + _formdiv.id,
  8401. "style": {
  8402. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8403. },
  8404. "name": "思维网格",
  8405. "forms": _formdiv,
  8406. "click": function () {
  8407. U.MD.D.I.openApplication(str, obj, info);
  8408. }
  8409. }
  8410. break;
  8411. case "courseDesign":
  8412. _iframe = $$("iframe", {
  8413. "webkitallowfullscreen": "",
  8414. "mozallowfullscreen": "",
  8415. "allowfullscreen": "",
  8416. "frameborder": "no",
  8417. "border": "0",
  8418. "scrolling ": "no",
  8419. "style": {
  8420. "cssText": "border:0; width:100%; height:100%;"
  8421. },
  8422. "src": "/course-design-vue"
  8423. })
  8424. _box.appendChild(_iframe);
  8425. _box.appendChild(_jie);
  8426. _formdiv = new U.UF.UI.form(
  8427. "项目设计-" + _username,
  8428. _box, {
  8429. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8430. "style": {
  8431. "width": "90%",
  8432. "height": "90%",
  8433. "overflow": 'hidden'
  8434. },
  8435. "onresize": function () { }
  8436. }, {
  8437. closecallback: function () { }
  8438. }, {
  8439. "style": {
  8440. "height": "36px"
  8441. }
  8442. }).form; //创建窗体
  8443. _taskbar = {
  8444. "id": str + _formdiv.id,
  8445. "style": {
  8446. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8447. },
  8448. "name": "项目设计",
  8449. "forms": _formdiv,
  8450. "click": function () {
  8451. U.MD.D.I.openApplication(str, obj, info);
  8452. }
  8453. }
  8454. break;
  8455. }
  8456. const script1 = document.createElement("script");
  8457. script1.type = "text/javascript";
  8458. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8459. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8460. const script2 = document.createElement("script");
  8461. script2.type = "text/javascript";
  8462. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8463. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8464. const script3 = document.createElement("script");
  8465. script3.type = "text/javascript";
  8466. script3.charset = "UTF-8";
  8467. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8468. const script4 = document.createElement("script");
  8469. script4.type = "text/javascript";
  8470. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8471. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8472. if (_iframe) {
  8473. if (str == 'doc') {
  8474. _iframe = _formdiv.querySelector('iframe')
  8475. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8476. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8477. _iframe.contentWindow.document.body.appendChild(script1);
  8478. _iframe.contentWindow.document.body.appendChild(script2);
  8479. // _iframe.contentWindow.document.body.appendChild(script3);
  8480. _iframe.contentWindow.document.body.appendChild(script4);
  8481. })
  8482. if (onloadListener) {
  8483. _iframe.contentDocument.location.reload()
  8484. } else {
  8485. _iframe.contentDocument.location.reload()
  8486. }
  8487. } else if (str == 'courseDesign') {
  8488. U.UF.DL.iframeLoad(_iframe, function () {
  8489. // _iframe.contentWindow.U.MD.O.W.load();
  8490. // _iframe.contentWindow.document.body.appendChild(script1);
  8491. _iframe.contentWindow.document.body.appendChild(script2);
  8492. _iframe.contentWindow.document.body.appendChild(script4);
  8493. })
  8494. } else if (str == 'mind') {
  8495. _iframe = _formdiv.querySelector('iframe')
  8496. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8497. //
  8498. _iframe.contentWindow.document.body.appendChild(script1);
  8499. _iframe.contentWindow.document.body.appendChild(script2);
  8500. _iframe.contentWindow.document.body.appendChild(script4);
  8501. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8502. })
  8503. if (onloadListener) {
  8504. _iframe.contentDocument.location.reload()
  8505. } else {
  8506. _iframe.contentDocument.location.reload()
  8507. }
  8508. } else if (str == 'whiteboard') {
  8509. _iframe = _formdiv.querySelector('iframe')
  8510. let onloadListener = _iframe.onload = () => {
  8511. _iframe.contentWindow.document.body.appendChild(script1);
  8512. _iframe.contentWindow.document.body.appendChild(script2);
  8513. _iframe.contentWindow.document.body.appendChild(script4);
  8514. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8515. };
  8516. // if (onloadListener) {
  8517. // try {
  8518. // _iframe.src += "?cocorobo="+new Date().getTime()
  8519. // _iframe.contentWindow.document.location.reload()
  8520. // } catch (error) {
  8521. // }
  8522. // } else {
  8523. // _iframe.contentDocument.location.reload()
  8524. // }
  8525. } else {
  8526. _iframe.onload = () => {
  8527. _iframe.contentWindow.document.body.appendChild(script1);
  8528. _iframe.contentWindow.document.body.appendChild(script2);
  8529. // _iframe.contentWindow.document.body.appendChild(script3);
  8530. _iframe.contentWindow.document.body.appendChild(script4);
  8531. };
  8532. }
  8533. _jie.onclick = async () => {
  8534. let text = ''
  8535. if (aTool == 1) {
  8536. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8537. } else if (aTool == 6) {
  8538. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8539. } else if (aTool == 3) {
  8540. text = await U.MD.D.I.getEditorContent(_iframe);
  8541. }
  8542. _loading.style.display = 'flex'
  8543. console.log(_loading);
  8544. var _ajs = _iframe.contentWindow.document.createElement("script");
  8545. _ajs.type = "text/javascript";
  8546. _ajs.innerHTML =
  8547. // 'console.log(' + _loading + ');\n' +
  8548. 'var _js = document.createElement("script");\n' +
  8549. '_js.type="text/javascript";\n' +
  8550. '_js.charset="UTF-8";\n' +
  8551. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8552. "_js.onload = function(){\n" +
  8553. ' var a = document.getElementsByTagName("img")\n' +
  8554. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8555. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8556. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8557. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8558. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8559. "beforeUpload_shishi(file," +
  8560. "'" +
  8561. _userid +
  8562. "'" +
  8563. ", " +
  8564. "'" +
  8565. _cid +
  8566. "'" +
  8567. ", " +
  8568. "'" +
  8569. _stage +
  8570. "'" +
  8571. ", " +
  8572. "'" +
  8573. _task +
  8574. "'" +
  8575. ", " +
  8576. "'" +
  8577. _tool +
  8578. "'" +
  8579. ", " +
  8580. "'" +
  8581. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8582. "'" +
  8583. ", " +
  8584. "'" +
  8585. aTool +
  8586. "'" +
  8587. ", " +
  8588. "`" +
  8589. text +
  8590. "`" +
  8591. ")\n" +
  8592. " });\n" +
  8593. "}\n" +
  8594. "document.head.appendChild(_js);\n";
  8595. _iframe.contentWindow.document.head.appendChild(_ajs);
  8596. }
  8597. }
  8598. }
  8599. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8600. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8601. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8602. _userid = student.userid, //登录用户id
  8603. _username = student.student //用户名字
  8604. let _iframe;
  8605. let _cid = cid,
  8606. _stage = stage,
  8607. _task = task,
  8608. _tool = tool;
  8609. var _jie = $$("div", {
  8610. "style": {
  8611. "position": "absolute",
  8612. "bottom": "50px",
  8613. "right": "50px",
  8614. "zIndex": "9999",
  8615. "backgroundColor": "#2268bc",
  8616. "color": "#fff",
  8617. "padding": "12px 20px",
  8618. "cursor": "pointer",
  8619. "borderRadius": "4px",
  8620. },
  8621. "innerHTML": "提交作业"
  8622. })
  8623. let aTool = ''
  8624. let _loading = document.createElement('div')
  8625. _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;"
  8626. // _loading.id = "";
  8627. let _lchild = document.createElement('div')
  8628. let _limg = document.createElement('img')
  8629. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8630. _limg.style = "width: 26px;margin-right: 10px;"
  8631. _lchild.appendChild(_limg)
  8632. let _lspan = document.createElement('span')
  8633. _lspan.innerHTML = "上传中..."
  8634. _lchild.appendChild(_lspan)
  8635. _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%);"
  8636. _loading.appendChild(_lchild)
  8637. var _box = $$('div', {
  8638. "style": {
  8639. "position": "relative",
  8640. "width": "100%",
  8641. "height": "100%",
  8642. },
  8643. })
  8644. _box.appendChild(_loading)
  8645. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8646. switch (str) {
  8647. case "whiteboard":
  8648. aTool = 1;
  8649. _iframe = $$("iframe", {
  8650. "frameborder": "no",
  8651. "border": "0",
  8652. "scrolling ": "no",
  8653. "style": {
  8654. "cssText": "border:0;width:100%;height:100%"
  8655. },
  8656. "src": "https://beta.iwb.cocorobo.cn/"
  8657. })
  8658. _box.appendChild(_iframe);
  8659. _box.appendChild(_jie);
  8660. _formdiv = new U.UF.UI.form(
  8661. "电子白板-" + _username,
  8662. _box, {
  8663. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8664. "style": {
  8665. "width": "90%",
  8666. "height": "90%",
  8667. "overflow": 'hidden'
  8668. },
  8669. "onresize": function () { }
  8670. }, {
  8671. closecallback: function () { }
  8672. }, {
  8673. "style": {
  8674. "height": "36px"
  8675. }
  8676. }).form; //创建窗体
  8677. _taskbar = {
  8678. "id": str + _formdiv.id,
  8679. "style": {
  8680. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8681. },
  8682. "name": "电子白板",
  8683. "forms": _formdiv,
  8684. "click": function () {
  8685. U.MD.D.I.openApplication(str, obj, info);
  8686. }
  8687. }
  8688. break;
  8689. case "mind":
  8690. aTool = 3;
  8691. _iframe = $$("iframe", {
  8692. "frameborder": "no",
  8693. "border": "0",
  8694. "scrolling ": "no",
  8695. "style": {
  8696. "cssText": "border:0;width:100%;height:100%"
  8697. },
  8698. "src": "/kityminder-editor/dist/index.html"
  8699. })
  8700. _box.appendChild(_iframe);
  8701. _box.appendChild(_jie);
  8702. _formdiv = new U.UF.UI.form(
  8703. "思维导图-" + _username,
  8704. _box, { //"/jsmind/example/demo.html"
  8705. "id": "mind" + cid + stage + task + tool + _userid,
  8706. "style": {
  8707. "width": "90%",
  8708. "height": "90%",
  8709. "overflow": 'hidden'
  8710. },
  8711. "onresize": function () { }
  8712. }, {
  8713. closecallback: function () { }
  8714. }, {
  8715. "style": {
  8716. "height": "36px"
  8717. }
  8718. }).form; //创建窗体
  8719. _taskbar = {
  8720. "id": str + _formdiv.id,
  8721. "style": {
  8722. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8723. },
  8724. "name": "思维导图",
  8725. "forms": _formdiv,
  8726. "click": function () {
  8727. U.MD.D.I.openApplication(str, obj, info);
  8728. }
  8729. }
  8730. break;
  8731. case "MindMap":
  8732. aTool = 3;
  8733. _iframe = $$("iframe", {
  8734. "frameborder": "no",
  8735. "border": "0",
  8736. "scrolling ": "no",
  8737. "style": {
  8738. "cssText": "border:0;width:100%;height:100%"
  8739. },
  8740. "src": "//cloud.cocorobo.cn/mind/"
  8741. })
  8742. _box.appendChild(_iframe);
  8743. _box.appendChild(_jie);
  8744. _formdiv = new U.UF.UI.form(
  8745. "思维导图-" + _username,
  8746. _box, { //"/jsmind/example/demo.html"
  8747. "id": "mind" + cid + stage + task + tool + _userid,
  8748. "style": {
  8749. "width": "90%",
  8750. "height": "90%",
  8751. "overflow": 'hidden'
  8752. },
  8753. "onresize": function () { }
  8754. }, {
  8755. closecallback: function () { }
  8756. }, {
  8757. "style": {
  8758. "height": "36px"
  8759. }
  8760. }).form; //创建窗体
  8761. _taskbar = {
  8762. "id": str + _formdiv.id,
  8763. "style": {
  8764. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8765. },
  8766. "name": "思维导图",
  8767. "forms": _formdiv,
  8768. "click": function () {
  8769. U.MD.D.I.openApplication(str, obj, info);
  8770. }
  8771. }
  8772. break;
  8773. case "doc":
  8774. aTool = 6;
  8775. _iframe = $$("iframe", {
  8776. "frameborder": "no",
  8777. "border": "0",
  8778. "scrolling ": "no",
  8779. "style": {
  8780. "cssText": "border:0;width:100%;height:100%"
  8781. },
  8782. "src": "/Office/Word/WordEditArea.htm"
  8783. })
  8784. _box.appendChild(_iframe);
  8785. _box.appendChild(_jie);
  8786. _formdiv = new U.UF.UI.form(
  8787. "协同文档-" + _username,
  8788. _box, {
  8789. "id": "doc" + cid + stage + task + tool + _userid,
  8790. "style": {
  8791. "width": "90%",
  8792. "height": "90%",
  8793. "overflow": 'hidden'
  8794. },
  8795. "onresize": function () { }
  8796. }, {
  8797. closecallback: function () { }
  8798. }, {
  8799. "style": {
  8800. "height": "36px"
  8801. }
  8802. }).form; //创建窗体
  8803. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8804. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8805. })
  8806. _taskbar = {
  8807. "id": str + _formdiv.id,
  8808. "style": {
  8809. "backgroundImage": "url(/img/icon/doc.png)"
  8810. },
  8811. "name": "协同文档",
  8812. "forms": _formdiv,
  8813. "click": function () {
  8814. U.MD.D.I.openApplication(str, obj, info);
  8815. }
  8816. }
  8817. break;
  8818. case "mindNetwork": //好友打开
  8819. aTool = 7;
  8820. _iframe = $$("iframe", {
  8821. "webkitallowfullscreen": "",
  8822. "mozallowfullscreen": "",
  8823. "allowfullscreen": "",
  8824. "frameborder": "no",
  8825. "border": "0",
  8826. "scrolling ": "no",
  8827. "style": {
  8828. "cssText": "border:0; width:100%; height:100%;"
  8829. },
  8830. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8831. })
  8832. _box.appendChild(_iframe);
  8833. _box.appendChild(_jie);
  8834. _formdiv = new U.UF.UI.form(
  8835. "思维网格-" + _username,
  8836. _box, {
  8837. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8838. "style": {
  8839. "width": "90%",
  8840. "height": "90%",
  8841. "overflow": 'hidden'
  8842. },
  8843. "onresize": function () { }
  8844. }, {
  8845. closecallback: function () { }
  8846. }, {
  8847. "style": {
  8848. "height": "36px"
  8849. }
  8850. }).form; //创建窗体
  8851. _taskbar = {
  8852. "id": str + _formdiv.id,
  8853. "style": {
  8854. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8855. },
  8856. "name": "思维网格",
  8857. "forms": _formdiv,
  8858. "click": function () {
  8859. U.MD.D.I.openApplication(str, obj, info);
  8860. }
  8861. }
  8862. break;
  8863. case "courseDesign":
  8864. _iframe = $$("iframe", {
  8865. "webkitallowfullscreen": "",
  8866. "mozallowfullscreen": "",
  8867. "allowfullscreen": "",
  8868. "frameborder": "no",
  8869. "border": "0",
  8870. "scrolling ": "no",
  8871. "style": {
  8872. "cssText": "border:0; width:100%; height:100%;"
  8873. },
  8874. "src": "/course-design-vue"
  8875. })
  8876. _box.appendChild(_iframe);
  8877. _box.appendChild(_jie);
  8878. _formdiv = new U.UF.UI.form(
  8879. "项目设计-" + _username,
  8880. _box, {
  8881. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8882. "style": {
  8883. "width": "90%",
  8884. "height": "90%",
  8885. "overflow": 'hidden'
  8886. },
  8887. "onresize": function () { }
  8888. }, {
  8889. closecallback: function () { }
  8890. }, {
  8891. "style": {
  8892. "height": "36px"
  8893. }
  8894. }).form; //创建窗体
  8895. _taskbar = {
  8896. "id": str + _formdiv.id,
  8897. "style": {
  8898. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8899. },
  8900. "name": "项目设计",
  8901. "forms": _formdiv,
  8902. "click": function () {
  8903. U.MD.D.I.openApplication(str, obj, info);
  8904. }
  8905. }
  8906. break;
  8907. }
  8908. const script1 = document.createElement("script");
  8909. script1.type = "text/javascript";
  8910. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8911. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8912. const script2 = document.createElement("script");
  8913. script2.type = "text/javascript";
  8914. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8915. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8916. const script3 = document.createElement("script");
  8917. script3.type = "text/javascript";
  8918. script3.charset = "UTF-8";
  8919. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8920. const script4 = document.createElement("script");
  8921. script4.type = "text/javascript";
  8922. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8923. script4.src = window.origin + "/js/Common/jietu2E.js";
  8924. if (_iframe) {
  8925. if (str == 'doc') {
  8926. _iframe = _formdiv.querySelector('iframe')
  8927. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8928. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8929. _iframe.contentWindow.document.body.appendChild(script1);
  8930. _iframe.contentWindow.document.body.appendChild(script2);
  8931. // _iframe.contentWindow.document.body.appendChild(script3);
  8932. _iframe.contentWindow.document.body.appendChild(script4);
  8933. })
  8934. if (onloadListener) {
  8935. _iframe.contentDocument.location.reload()
  8936. } else {
  8937. _iframe.contentDocument.location.reload()
  8938. }
  8939. } else if (str == 'courseDesign') {
  8940. U.UF.DL.iframeLoad(_iframe, function () {
  8941. // _iframe.contentWindow.U.MD.O.W.load();
  8942. // _iframe.contentWindow.document.body.appendChild(script1);
  8943. _iframe.contentWindow.document.body.appendChild(script2);
  8944. _iframe.contentWindow.document.body.appendChild(script4);
  8945. })
  8946. } else if (str == 'mind') {
  8947. _iframe = _formdiv.querySelector('iframe')
  8948. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8949. //
  8950. _iframe.contentWindow.document.body.appendChild(script1);
  8951. _iframe.contentWindow.document.body.appendChild(script2);
  8952. _iframe.contentWindow.document.body.appendChild(script4);
  8953. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8954. })
  8955. if (onloadListener) {
  8956. _iframe.contentDocument.location.reload()
  8957. } else {
  8958. _iframe.contentDocument.location.reload()
  8959. }
  8960. } else if (str == 'whiteboard') {
  8961. _iframe = _formdiv.querySelector('iframe')
  8962. let onloadListener = _iframe.onload = () => {
  8963. _iframe.contentWindow.document.body.appendChild(script1);
  8964. _iframe.contentWindow.document.body.appendChild(script2);
  8965. _iframe.contentWindow.document.body.appendChild(script4);
  8966. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8967. };
  8968. // if (onloadListener) {
  8969. // try {
  8970. // _iframe.src += "?cocorobo="+new Date().getTime()
  8971. // _iframe.contentWindow.document.location.reload()
  8972. // } catch (error) {
  8973. // }
  8974. // } else {
  8975. // _iframe.contentDocument.location.reload()
  8976. // }
  8977. } else {
  8978. _iframe.onload = () => {
  8979. _iframe.contentWindow.document.body.appendChild(script1);
  8980. _iframe.contentWindow.document.body.appendChild(script2);
  8981. // _iframe.contentWindow.document.body.appendChild(script3);
  8982. _iframe.contentWindow.document.body.appendChild(script4);
  8983. };
  8984. }
  8985. _jie.onclick = async () => {
  8986. let text = ''
  8987. if (aTool == 1) {
  8988. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8989. } else if (aTool == 6) {
  8990. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8991. } else if (aTool == 3) {
  8992. text = await U.MD.D.I.getEditorContent(_iframe);
  8993. }
  8994. _loading.style.display = 'flex'
  8995. console.log(_loading);
  8996. var _ajs = _iframe.contentWindow.document.createElement("script");
  8997. _ajs.type = "text/javascript";
  8998. _ajs.innerHTML =
  8999. // 'console.log(' + _loading + ');\n' +
  9000. 'var _js = document.createElement("script");\n' +
  9001. '_js.type="text/javascript";\n' +
  9002. '_js.charset="UTF-8";\n' +
  9003. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9004. "_js.onload = function(){\n" +
  9005. ' var a = document.getElementsByTagName("img")\n' +
  9006. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9007. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9008. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9009. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9010. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9011. "beforeUpload_shishi(file," +
  9012. "'" +
  9013. _userid +
  9014. "'" +
  9015. ", " +
  9016. "'" +
  9017. _cid +
  9018. "'" +
  9019. ", " +
  9020. "'" +
  9021. _stage +
  9022. "'" +
  9023. ", " +
  9024. "'" +
  9025. _task +
  9026. "'" +
  9027. ", " +
  9028. "'" +
  9029. _tool +
  9030. "'" +
  9031. ", " +
  9032. "'" +
  9033. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9034. "'" +
  9035. ", " +
  9036. "'" +
  9037. aTool +
  9038. "'" +
  9039. ", " +
  9040. "`" +
  9041. text +
  9042. "`" +
  9043. ")\n" +
  9044. " });\n" +
  9045. "}\n" +
  9046. "document.head.appendChild(_js);\n";
  9047. _iframe.contentWindow.document.head.appendChild(_ajs);
  9048. }
  9049. }
  9050. }
  9051. U.MD.D.I.getEditorContent = function (iframe) {
  9052. return new Promise((resolve, reject) => {
  9053. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9054. console.log(content);
  9055. resolve(content)
  9056. });
  9057. });
  9058. }
  9059. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9060. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9061. // if (res.value[0].length > 0) {
  9062. // // resolve(res.value[0][0].text);
  9063. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9064. // $(fileInput).val('');
  9065. // });
  9066. // }
  9067. // }, [], { "type": "GET", "withCredentials": true });
  9068. var xmlhttp;
  9069. var Mac, Sn, DeviceId
  9070. if (window.XMLHttpRequest) {
  9071. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9072. xmlhttp = new XMLHttpRequest();
  9073. } else {
  9074. // IE6, IE5 浏览器执行代码
  9075. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9076. }
  9077. xmlhttp.onreadystatechange = function () {
  9078. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9079. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9080. // resolve(res.value[0][0].text);
  9081. if (type == '2') {
  9082. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9083. } else if (type == '3') {
  9084. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9085. }
  9086. } else {
  9087. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9088. }
  9089. }
  9090. }
  9091. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9092. xmlhttp.send();
  9093. }
  9094. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9095. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9096. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9097. _userinfo = US.userInfo, //登录用户信息
  9098. _userid = US.userInfo.userid //登录用户id
  9099. let _iframe;
  9100. let _cid = cid,
  9101. _stage = stage,
  9102. _task = task,
  9103. _tool = tool;
  9104. var _jie = $$("div", {
  9105. "style": {
  9106. "position": "absolute",
  9107. "bottom": "50px",
  9108. "right": "50px",
  9109. "zIndex": "9999",
  9110. "backgroundColor": "#2268bc",
  9111. "color": "#fff",
  9112. "padding": "12px 20px",
  9113. "cursor": "pointer",
  9114. "borderRadius": "4px",
  9115. },
  9116. "innerHTML": "确认并提交"
  9117. })
  9118. let aTool = ''
  9119. let _loading = document.createElement('div')
  9120. _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;"
  9121. // _loading.id = "";
  9122. let _lchild = document.createElement('div')
  9123. let _limg = document.createElement('img')
  9124. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9125. _limg.style = "width: 26px;margin-right: 10px;"
  9126. _lchild.appendChild(_limg)
  9127. let _lspan = document.createElement('span')
  9128. _lspan.innerHTML = "上传中..."
  9129. _lchild.appendChild(_lspan)
  9130. _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%);"
  9131. _loading.appendChild(_lchild)
  9132. var _box = $$('div', {
  9133. "style": {
  9134. "position": "relative",
  9135. "width": "100%",
  9136. "height": "100%",
  9137. },
  9138. })
  9139. _box.appendChild(_loading)
  9140. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9141. switch (str) {
  9142. case "whiteboard":
  9143. aTool = 1;
  9144. _iframe = $$("iframe", {
  9145. "frameborder": "no",
  9146. "border": "0",
  9147. "scrolling ": "no",
  9148. "style": {
  9149. "cssText": "border:0;width:100%;height:100%"
  9150. },
  9151. "src": "https://beta.iwb.cocorobo.cn/"
  9152. })
  9153. _box.appendChild(_iframe);
  9154. _box.appendChild(_jie);
  9155. _formdiv = new U.UF.UI.form(
  9156. "电子白板",
  9157. _box, {
  9158. "id": "whiteboards" + cid + stage + task + tool,
  9159. "style": {
  9160. "width": "90%",
  9161. "height": "90%",
  9162. "overflow": 'hidden'
  9163. },
  9164. "onresize": function () { }
  9165. }, {
  9166. closecallback: function () { }
  9167. }, {
  9168. "style": {
  9169. "height": "36px"
  9170. }
  9171. }).form; //创建窗体
  9172. _taskbar = {
  9173. "id": str + _formdiv.id,
  9174. "style": {
  9175. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9176. },
  9177. "name": "电子白板",
  9178. "forms": _formdiv,
  9179. "click": function () {
  9180. U.MD.D.I.openApplication(str, obj, info);
  9181. }
  9182. }
  9183. break;
  9184. case "mind":
  9185. aTool = 3;
  9186. _iframe = $$("iframe", {
  9187. "frameborder": "no",
  9188. "border": "0",
  9189. "scrolling ": "no",
  9190. "style": {
  9191. "cssText": "border:0;width:100%;height:100%"
  9192. },
  9193. "src": "/kityminder-editor/dist/index.html"
  9194. });
  9195. _box.appendChild(_iframe);
  9196. _box.appendChild(_jie);
  9197. _formdiv = new U.UF.UI.form(
  9198. "思维导图",
  9199. _box, { //"/jsmind/example/demo.html"
  9200. "id": "minds" + cid + stage + task + tool,
  9201. "style": {
  9202. "width": "90%",
  9203. "height": "90%",
  9204. "overflow": 'hidden'
  9205. },
  9206. "onresize": function () { }
  9207. }, {
  9208. closecallback: function () { }
  9209. }, {
  9210. "style": {
  9211. "height": "36px"
  9212. }
  9213. }).form; //创建窗体
  9214. _taskbar = {
  9215. "id": str + _formdiv.id,
  9216. "style": {
  9217. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9218. },
  9219. "name": "思维导图",
  9220. "forms": _formdiv,
  9221. "click": function () {
  9222. U.MD.D.I.openApplication(str, obj, info);
  9223. }
  9224. }
  9225. break;
  9226. case "doc":
  9227. aTool = 6;
  9228. _iframe = $$("iframe", {
  9229. "frameborder": "no",
  9230. "border": "0",
  9231. "scrolling ": "no",
  9232. "style": {
  9233. "cssText": "border:0;width:100%;height:100%"
  9234. },
  9235. "src": "/Office/Word/WordEditArea.htm"
  9236. })
  9237. _box.appendChild(_iframe);
  9238. _box.appendChild(_jie);
  9239. _formdiv = new U.UF.UI.form(
  9240. "协同文档",
  9241. _box, {
  9242. "id": "docs" + cid + stage + task + tool,
  9243. "style": {
  9244. "width": "90%",
  9245. "height": "90%",
  9246. "overflow": 'hidden'
  9247. },
  9248. "onresize": function () { }
  9249. }, {
  9250. closecallback: function () { }
  9251. }, {
  9252. "style": {
  9253. "height": "36px"
  9254. }
  9255. }).form; //创建窗体
  9256. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9257. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9258. })
  9259. _taskbar = {
  9260. "id": str + _formdiv.id,
  9261. "style": {
  9262. "backgroundImage": "url(/img/icon/doc.png)"
  9263. },
  9264. "name": "协同文档",
  9265. "forms": _formdiv,
  9266. "click": function () {
  9267. U.MD.D.I.openApplication(str, obj, info);
  9268. }
  9269. }
  9270. break;
  9271. }
  9272. const script1 = document.createElement("script");
  9273. script1.type = "text/javascript";
  9274. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9275. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9276. const script2 = document.createElement("script");
  9277. script2.type = "text/javascript";
  9278. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9279. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9280. const script3 = document.createElement("script");
  9281. script3.type = "text/javascript";
  9282. script3.charset = "UTF-8";
  9283. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9284. const script4 = document.createElement("script");
  9285. script4.type = "text/javascript";
  9286. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9287. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9288. if (_iframe) {
  9289. if (str == 'doc') {
  9290. _iframe = _formdiv.querySelector('iframe')
  9291. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9292. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9293. _iframe.contentWindow.document.body.appendChild(script1);
  9294. _iframe.contentWindow.document.body.appendChild(script2);
  9295. // _iframe.contentWindow.document.body.appendChild(script3);
  9296. _iframe.contentWindow.document.body.appendChild(script4);
  9297. })
  9298. if (onloadListener) {
  9299. _iframe.contentDocument.location.reload()
  9300. } else {
  9301. _iframe.contentDocument.location.reload()
  9302. }
  9303. } else if (str == 'mind') {
  9304. _iframe = _formdiv.querySelector('iframe')
  9305. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9306. _iframe.contentWindow.document.body.appendChild(script1);
  9307. _iframe.contentWindow.document.body.appendChild(script2);
  9308. _iframe.contentWindow.document.body.appendChild(script4);
  9309. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9310. })
  9311. if (onloadListener) {
  9312. _iframe.contentDocument.location.reload()
  9313. } else {
  9314. _iframe.contentDocument.location.reload()
  9315. }
  9316. } else {
  9317. _iframe.onload = () => {
  9318. _iframe.contentWindow.document.body.appendChild(script1);
  9319. _iframe.contentWindow.document.body.appendChild(script2);
  9320. // _iframe.contentWindow.document.body.appendChild(script3);
  9321. _iframe.contentWindow.document.body.appendChild(script4);
  9322. };
  9323. }
  9324. _jie.onclick = async () => {
  9325. let text = ''
  9326. if (aTool == 6) {
  9327. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9328. } else if (aTool == 3) {
  9329. text = await U.MD.D.I.getEditorContent(_iframe);
  9330. }
  9331. _loading.style.display = 'flex'
  9332. console.log(_loading);
  9333. var _ajs = _iframe.contentWindow.document.createElement("script");
  9334. _ajs.type = "text/javascript";
  9335. _ajs.innerHTML =
  9336. // 'console.log(' + _loading + ');\n' +
  9337. 'var _js = document.createElement("script");\n' +
  9338. '_js.type="text/javascript";\n' +
  9339. '_js.charset="UTF-8";\n' +
  9340. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9341. "_js.onload = function(){\n" +
  9342. ' var a = document.getElementsByTagName("img")\n' +
  9343. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9344. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9345. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9346. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9347. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9348. "beforeUpload_shishi(file," +
  9349. "'" +
  9350. _userid +
  9351. "'" +
  9352. ", " +
  9353. "'" +
  9354. _cid +
  9355. "'" +
  9356. ", " +
  9357. "'" +
  9358. _stage +
  9359. "'" +
  9360. ", " +
  9361. "'" +
  9362. _task +
  9363. "'" +
  9364. ", " +
  9365. "'" +
  9366. _tool +
  9367. "'" +
  9368. ", " +
  9369. "'" +
  9370. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9371. "'" +
  9372. ", " +
  9373. "'" +
  9374. aTool +
  9375. "'" +
  9376. ", " +
  9377. "`" +
  9378. text +
  9379. "`" +
  9380. ")\n" +
  9381. " });\n" +
  9382. "}\n" +
  9383. "document.head.appendChild(_js);\n";
  9384. _iframe.contentWindow.document.head.appendChild(_ajs);
  9385. }
  9386. }
  9387. //U.MD.D.I.openClick(str);
  9388. //如果有任务栏信息
  9389. // if (_taskbar) {
  9390. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9391. // }
  9392. }
  9393. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9394. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9395. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9396. _userinfo = US.userInfo, //登录用户信息
  9397. _userid = US.userInfo.userid //登录用户id
  9398. let _iframe;
  9399. let _cid = cid,
  9400. _stage = stage,
  9401. _task = task,
  9402. _tool = tool;
  9403. var _jie = $$("div", {
  9404. "style": {
  9405. "position": "absolute",
  9406. "bottom": "50px",
  9407. "right": "50px",
  9408. "zIndex": "9999",
  9409. "backgroundColor": "#2268bc",
  9410. "color": "#fff",
  9411. "padding": "12px 20px",
  9412. "cursor": "pointer",
  9413. "borderRadius": "4px",
  9414. },
  9415. "innerHTML": "确认并提交"
  9416. })
  9417. let aTool = ''
  9418. let _loading = document.createElement('div')
  9419. _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;"
  9420. // _loading.id = "";
  9421. let _lchild = document.createElement('div')
  9422. let _limg = document.createElement('img')
  9423. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9424. _limg.style = "width: 26px;margin-right: 10px;"
  9425. _lchild.appendChild(_limg)
  9426. let _lspan = document.createElement('span')
  9427. _lspan.innerHTML = "上传中..."
  9428. _lchild.appendChild(_lspan)
  9429. _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%);"
  9430. _loading.appendChild(_lchild)
  9431. var _box = $$('div', {
  9432. "style": {
  9433. "position": "relative",
  9434. "width": "100%",
  9435. "height": "100%",
  9436. },
  9437. })
  9438. _box.appendChild(_loading)
  9439. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9440. switch (str) {
  9441. case "whiteboard":
  9442. aTool = 1;
  9443. _iframe = $$("iframe", {
  9444. "frameborder": "no",
  9445. "border": "0",
  9446. "scrolling ": "no",
  9447. "style": {
  9448. "cssText": "border:0;width:100%;height:100%"
  9449. },
  9450. "src": "https://beta.iwb.cocorobo.cn/"
  9451. })
  9452. _box.appendChild(_iframe);
  9453. _box.appendChild(_jie);
  9454. _formdiv = new U.UF.UI.form(
  9455. "电子白板",
  9456. _box, {
  9457. "id": "whiteboards" + cid + stage + task + tool,
  9458. "style": {
  9459. "width": "90%",
  9460. "height": "90%",
  9461. "overflow": 'hidden'
  9462. },
  9463. "onresize": function () { }
  9464. }, {
  9465. closecallback: function () { }
  9466. }, {
  9467. "style": {
  9468. "height": "36px"
  9469. }
  9470. }).form; //创建窗体
  9471. _taskbar = {
  9472. "id": str + _formdiv.id,
  9473. "style": {
  9474. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9475. },
  9476. "name": "电子白板",
  9477. "forms": _formdiv,
  9478. "click": function () {
  9479. U.MD.D.I.openApplication(str, obj, info);
  9480. }
  9481. }
  9482. break;
  9483. case "mind":
  9484. aTool = 3;
  9485. _iframe = $$("iframe", {
  9486. "frameborder": "no",
  9487. "border": "0",
  9488. "scrolling ": "no",
  9489. "style": {
  9490. "cssText": "border:0;width:100%;height:100%"
  9491. },
  9492. "src": "/kityminder-editor/dist/index.html"
  9493. });
  9494. _box.appendChild(_iframe);
  9495. _box.appendChild(_jie);
  9496. _formdiv = new U.UF.UI.form(
  9497. "思维导图",
  9498. _box, { //"/jsmind/example/demo.html"
  9499. "id": "minds" + cid + stage + task + tool,
  9500. "style": {
  9501. "width": "90%",
  9502. "height": "90%",
  9503. "overflow": 'hidden'
  9504. },
  9505. "onresize": function () { }
  9506. }, {
  9507. closecallback: function () { }
  9508. }, {
  9509. "style": {
  9510. "height": "36px"
  9511. }
  9512. }).form; //创建窗体
  9513. _taskbar = {
  9514. "id": str + _formdiv.id,
  9515. "style": {
  9516. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9517. },
  9518. "name": "思维导图",
  9519. "forms": _formdiv,
  9520. "click": function () {
  9521. U.MD.D.I.openApplication(str, obj, info);
  9522. }
  9523. }
  9524. break;
  9525. case "doc":
  9526. aTool = 6;
  9527. _iframe = $$("iframe", {
  9528. "frameborder": "no",
  9529. "border": "0",
  9530. "scrolling ": "no",
  9531. "style": {
  9532. "cssText": "border:0;width:100%;height:100%"
  9533. },
  9534. "src": "/Office/Word/WordEditArea.htm"
  9535. })
  9536. _box.appendChild(_iframe);
  9537. _box.appendChild(_jie);
  9538. _formdiv = new U.UF.UI.form(
  9539. "协同文档",
  9540. _box, {
  9541. "id": "docs" + cid + stage + task + tool,
  9542. "style": {
  9543. "width": "90%",
  9544. "height": "90%",
  9545. "overflow": 'hidden'
  9546. },
  9547. "onresize": function () { }
  9548. }, {
  9549. closecallback: function () { }
  9550. }, {
  9551. "style": {
  9552. "height": "36px"
  9553. }
  9554. }).form; //创建窗体
  9555. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9556. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9557. })
  9558. _taskbar = {
  9559. "id": str + _formdiv.id,
  9560. "style": {
  9561. "backgroundImage": "url(/img/icon/doc.png)"
  9562. },
  9563. "name": "协同文档",
  9564. "forms": _formdiv,
  9565. "click": function () {
  9566. U.MD.D.I.openApplication(str, obj, info);
  9567. }
  9568. }
  9569. break;
  9570. }
  9571. const script1 = document.createElement("script");
  9572. script1.type = "text/javascript";
  9573. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9574. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9575. const script2 = document.createElement("script");
  9576. script2.type = "text/javascript";
  9577. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9578. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9579. const script3 = document.createElement("script");
  9580. script3.type = "text/javascript";
  9581. script3.charset = "UTF-8";
  9582. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9583. const script4 = document.createElement("script");
  9584. script4.type = "text/javascript";
  9585. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9586. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9587. if (_iframe) {
  9588. if (str == 'doc') {
  9589. _iframe = _formdiv.querySelector('iframe')
  9590. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9591. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9592. _iframe.contentWindow.document.body.appendChild(script1);
  9593. _iframe.contentWindow.document.body.appendChild(script2);
  9594. // _iframe.contentWindow.document.body.appendChild(script3);
  9595. _iframe.contentWindow.document.body.appendChild(script4);
  9596. })
  9597. if (onloadListener) {
  9598. _iframe.contentDocument.location.reload()
  9599. } else {
  9600. _iframe.contentDocument.location.reload()
  9601. }
  9602. } else if (str == 'mind') {
  9603. _iframe = _formdiv.querySelector('iframe')
  9604. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9605. _iframe.contentWindow.document.body.appendChild(script1);
  9606. _iframe.contentWindow.document.body.appendChild(script2);
  9607. _iframe.contentWindow.document.body.appendChild(script4);
  9608. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9609. })
  9610. if (onloadListener) {
  9611. _iframe.contentDocument.location.reload()
  9612. } else {
  9613. _iframe.contentDocument.location.reload()
  9614. }
  9615. } else {
  9616. _iframe.onload = () => {
  9617. _iframe.contentWindow.document.body.appendChild(script1);
  9618. _iframe.contentWindow.document.body.appendChild(script2);
  9619. // _iframe.contentWindow.document.body.appendChild(script3);
  9620. _iframe.contentWindow.document.body.appendChild(script4);
  9621. };
  9622. }
  9623. _jie.onclick = async () => {
  9624. let text = ''
  9625. if (aTool == 6) {
  9626. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9627. } else if (aTool == 3) {
  9628. text = await U.MD.D.I.getEditorContent(_iframe);
  9629. }
  9630. _loading.style.display = 'flex'
  9631. console.log(_loading);
  9632. var _ajs = _iframe.contentWindow.document.createElement("script");
  9633. _ajs.type = "text/javascript";
  9634. _ajs.innerHTML =
  9635. // 'console.log(' + _loading + ');\n' +
  9636. 'var _js = document.createElement("script");\n' +
  9637. '_js.type="text/javascript";\n' +
  9638. '_js.charset="UTF-8";\n' +
  9639. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9640. "_js.onload = function(){\n" +
  9641. ' var a = document.getElementsByTagName("img")\n' +
  9642. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9643. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9644. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9645. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9646. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9647. "beforeUpload_shishi(file," +
  9648. "'" +
  9649. _userid +
  9650. "'" +
  9651. ", " +
  9652. "'" +
  9653. _cid +
  9654. "'" +
  9655. ", " +
  9656. "'" +
  9657. _stage +
  9658. "'" +
  9659. ", " +
  9660. "'" +
  9661. _task +
  9662. "'" +
  9663. ", " +
  9664. "'" +
  9665. _tool +
  9666. "'" +
  9667. ", " +
  9668. "'" +
  9669. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9670. "'" +
  9671. ", " +
  9672. "'" +
  9673. aTool +
  9674. "'" +
  9675. ", " +
  9676. "`" +
  9677. text +
  9678. "`" +
  9679. ")\n" +
  9680. " });\n" +
  9681. "}\n" +
  9682. "document.head.appendChild(_js);\n";
  9683. _iframe.contentWindow.document.head.appendChild(_ajs);
  9684. }
  9685. }
  9686. //U.MD.D.I.openClick(str);
  9687. //如果有任务栏信息
  9688. // if (_taskbar) {
  9689. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9690. // }
  9691. }
  9692. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9693. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9694. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9695. _userinfo = US.userInfo, //登录用户信息
  9696. _userid = US.userInfo.userid //登录用户id
  9697. let _iframe;
  9698. let _cid = cid,
  9699. _stage = stage,
  9700. _task = task,
  9701. _tool = tool;
  9702. var _jie = $$("div", {
  9703. "style": {
  9704. "position": "absolute",
  9705. "bottom": "50px",
  9706. "right": "50px",
  9707. "zIndex": "9999",
  9708. "backgroundColor": "#2268bc",
  9709. "color": "#fff",
  9710. "padding": "12px 20px",
  9711. "cursor": "pointer",
  9712. "borderRadius": "4px",
  9713. },
  9714. "innerHTML": "上传模板"
  9715. })
  9716. let aTool = ''
  9717. let _loading = document.createElement('div')
  9718. _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;"
  9719. // _loading.id = "";
  9720. let _lchild = document.createElement('div')
  9721. let _limg = document.createElement('img')
  9722. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9723. _limg.style = "width: 26px;margin-right: 10px;"
  9724. _lchild.appendChild(_limg)
  9725. let _lspan = document.createElement('span')
  9726. _lspan.innerHTML = "上传中..."
  9727. _lchild.appendChild(_lspan)
  9728. _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%);"
  9729. _loading.appendChild(_lchild)
  9730. var _box = $$('div', {
  9731. "style": {
  9732. "position": "relative",
  9733. "width": "100%",
  9734. "height": "100%",
  9735. },
  9736. })
  9737. _box.appendChild(_loading)
  9738. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9739. switch (str) {
  9740. case "whiteboard":
  9741. aTool = 1;
  9742. _iframe = $$("iframe", {
  9743. "frameborder": "no",
  9744. "border": "0",
  9745. "scrolling ": "no",
  9746. "style": {
  9747. "cssText": "border:0;width:100%;height:100%"
  9748. },
  9749. "src": "https://beta.iwb.cocorobo.cn/"
  9750. })
  9751. _box.appendChild(_iframe);
  9752. _box.appendChild(_jie);
  9753. _formdiv = new U.UF.UI.form(
  9754. "电子白板",
  9755. _box, {
  9756. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9757. "style": {
  9758. "width": "90%",
  9759. "height": "90%",
  9760. "overflow": 'hidden'
  9761. },
  9762. "onresize": function () { }
  9763. }, {
  9764. closecallback: function () { }
  9765. }, {
  9766. "style": {
  9767. "height": "36px"
  9768. }
  9769. }).form; //创建窗体
  9770. _taskbar = {
  9771. "id": str + _formdiv.id,
  9772. "style": {
  9773. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9774. },
  9775. "name": "电子白板",
  9776. "forms": _formdiv,
  9777. "click": function () {
  9778. U.MD.D.I.openApplication(str, obj, info);
  9779. }
  9780. }
  9781. break;
  9782. case "mind":
  9783. aTool = 3;
  9784. _iframe = $$("iframe", {
  9785. "frameborder": "no",
  9786. "border": "0",
  9787. "scrolling ": "no",
  9788. "style": {
  9789. "cssText": "border:0;width:100%;height:100%"
  9790. },
  9791. "src": "/kityminder-editor/dist/index.html"
  9792. });
  9793. _box.appendChild(_iframe);
  9794. _box.appendChild(_jie);
  9795. _formdiv = new U.UF.UI.form(
  9796. "思维导图",
  9797. _box, { //"/jsmind/example/demo.html"
  9798. "id": "minds_Yu" + cid + stage + task + tool,
  9799. "style": {
  9800. "width": "90%",
  9801. "height": "90%",
  9802. "overflow": 'hidden'
  9803. },
  9804. "onresize": function () { }
  9805. }, {
  9806. closecallback: function () { }
  9807. }, {
  9808. "style": {
  9809. "height": "36px"
  9810. }
  9811. }).form; //创建窗体
  9812. _taskbar = {
  9813. "id": str + _formdiv.id,
  9814. "style": {
  9815. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9816. },
  9817. "name": "思维导图",
  9818. "forms": _formdiv,
  9819. "click": function () {
  9820. U.MD.D.I.openApplication(str, obj, info);
  9821. }
  9822. }
  9823. break;
  9824. case "doc":
  9825. aTool = 6;
  9826. _iframe = $$("iframe", {
  9827. "frameborder": "no",
  9828. "border": "0",
  9829. "scrolling ": "no",
  9830. "style": {
  9831. "cssText": "border:0;width:100%;height:100%"
  9832. },
  9833. "src": "/Office/Word/WordEditArea.htm"
  9834. })
  9835. _box.appendChild(_iframe);
  9836. _box.appendChild(_jie);
  9837. _formdiv = new U.UF.UI.form(
  9838. "协同文档",
  9839. _box, {
  9840. "id": "docs_Yu" + cid + stage + task + tool,
  9841. "style": {
  9842. "width": "90%",
  9843. "height": "90%",
  9844. "overflow": 'hidden'
  9845. },
  9846. "onresize": function () { }
  9847. }, {
  9848. closecallback: function () { }
  9849. }, {
  9850. "style": {
  9851. "height": "36px"
  9852. }
  9853. }).form; //创建窗体
  9854. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9855. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9856. })
  9857. _taskbar = {
  9858. "id": str + _formdiv.id,
  9859. "style": {
  9860. "backgroundImage": "url(/img/icon/doc.png)"
  9861. },
  9862. "name": "协同文档",
  9863. "forms": _formdiv,
  9864. "click": function () {
  9865. U.MD.D.I.openApplication(str, obj, info);
  9866. }
  9867. }
  9868. break;
  9869. case "CocoPi":
  9870. aTool = 57;
  9871. _iframe = $$("iframe", {
  9872. "allowpaymentrequest": "allowpaymentrequest",
  9873. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9874. "webkitallowfullscreen": "",
  9875. "mozallowfullscreen": "",
  9876. "frameborder": "no",
  9877. "border": "0",
  9878. "scrolling ": "no",
  9879. "style": {
  9880. "cssText": "border:0;width:100%;height:100%"
  9881. },
  9882. "src": "https://pi.cocorobo.cn/"
  9883. })
  9884. _box.appendChild(_iframe);
  9885. _box.appendChild(_jie);
  9886. _formdiv = new U.UF.UI.form(
  9887. "CocoPi",
  9888. _box, {
  9889. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9890. "style": {
  9891. "width": "90%",
  9892. "height": "90%",
  9893. "overflow": 'hidden'
  9894. },
  9895. "onresize": function () { }
  9896. }, {
  9897. closecallback: function () { }
  9898. }, {
  9899. "style": {
  9900. "height": "36px"
  9901. }
  9902. }).form; //创建窗体
  9903. _taskbar = {
  9904. "id": str + _formdiv.id,
  9905. "style": {
  9906. "backgroundImage": "url(/img/icon/cocopi.png)"
  9907. },
  9908. "name": "CocoPi",
  9909. "forms": _formdiv,
  9910. "click": function () {
  9911. U.MD.D.I.openApplication(str, obj, info);
  9912. }
  9913. }
  9914. break;
  9915. }
  9916. if (_iframe) {
  9917. if (str == 'doc') {
  9918. _iframe = _formdiv.querySelector('iframe')
  9919. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9920. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9921. })
  9922. if (onloadListener) {
  9923. _iframe.contentDocument.location.reload()
  9924. } else {
  9925. _iframe.contentDocument.location.reload()
  9926. }
  9927. } else if (str == 'mind') {
  9928. _iframe = _formdiv.querySelector('iframe')
  9929. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9930. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9931. })
  9932. if (onloadListener) {
  9933. _iframe.contentDocument.location.reload()
  9934. } else {
  9935. _iframe.contentDocument.location.reload()
  9936. }
  9937. } else if (str == 'whiteboard') {
  9938. _iframe = _formdiv.querySelector('iframe')
  9939. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9940. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9941. })
  9942. // if (onloadListener) {
  9943. // try {
  9944. // _iframe.src += "?cocorobo="+new Date().getTime()
  9945. // _iframe.contentWindow.document.location.reload()
  9946. // } catch (error) {
  9947. // }
  9948. // } else {
  9949. // _iframe.contentDocument.location.reload()
  9950. // }
  9951. } else if (str == 'CocoPi') {
  9952. _iframe = _formdiv.querySelector('iframe')
  9953. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9954. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9955. })
  9956. if (onloadListener) {
  9957. _iframe.contentDocument.location.reload()
  9958. } else {
  9959. _iframe.contentDocument.location.reload()
  9960. }
  9961. } else {
  9962. _iframe.onload = () => { };
  9963. }
  9964. _jie.onclick = async () => {
  9965. let text = ''
  9966. let type = '2'
  9967. if (aTool == 1) {
  9968. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9969. type = '3'
  9970. } else if (aTool == 6) {
  9971. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9972. type = '1'
  9973. } else if (aTool == 3) {
  9974. text = await U.MD.D.I.getEditorContent(_iframe);
  9975. type = '2'
  9976. } else if (aTool == 57) {
  9977. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9978. type = '4'
  9979. }
  9980. _loading.style.display = 'flex'
  9981. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9982. }
  9983. }
  9984. //U.MD.D.I.openClick(str);
  9985. //如果有任务栏信息
  9986. // if (_taskbar) {
  9987. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9988. // }
  9989. }
  9990. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9991. var xmlhttp;
  9992. var Mac, Sn, DeviceId
  9993. if (window.XMLHttpRequest) {
  9994. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9995. xmlhttp = new XMLHttpRequest();
  9996. } else {
  9997. // IE6, IE5 浏览器执行代码
  9998. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9999. }
  10000. xmlhttp.onreadystatechange = function () {
  10001. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10002. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10003. // resolve(res.value[0][0].text);
  10004. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10005. }
  10006. }
  10007. }
  10008. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10009. xmlhttp.send();
  10010. }
  10011. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10012. var xmlhttp;
  10013. var Mac, Sn, DeviceId
  10014. if (window.XMLHttpRequest) {
  10015. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10016. xmlhttp = new XMLHttpRequest();
  10017. } else {
  10018. // IE6, IE5 浏览器执行代码
  10019. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10020. }
  10021. xmlhttp.onreadystatechange = function () {
  10022. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10023. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10024. // resolve(res.value[0][0].text);
  10025. if (type == '2') {
  10026. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10027. } else if (type == '3') {
  10028. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10029. } else if (type == '4') {
  10030. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10031. }
  10032. } else {
  10033. if (type == '2') {
  10034. iframe.contentWindow.editor.minder.importData('json', '')
  10035. } else if (type == '3') {
  10036. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10037. } else if (type == '4') {
  10038. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10039. }
  10040. }
  10041. }
  10042. }
  10043. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10044. xmlhttp.send();
  10045. }
  10046. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10047. var xmlhttp;
  10048. var Mac, Sn, DeviceId
  10049. if (window.XMLHttpRequest) {
  10050. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10051. xmlhttp = new XMLHttpRequest();
  10052. } else {
  10053. // IE6, IE5 浏览器执行代码
  10054. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10055. }
  10056. xmlhttp.onreadystatechange = function () {
  10057. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10058. if (xmlhttp.response) {
  10059. // resolve(res.value[0][0].text);
  10060. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10061. // $(fileInput).val('');
  10062. // });
  10063. span.innerHTML = '上传成功'
  10064. setTimeout(() => {
  10065. loading.style.display = 'none'
  10066. }, 1000);
  10067. }
  10068. }
  10069. }
  10070. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10071. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10072. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10073. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10074. // 设置请求头,表示请求体的编码格式
  10075. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10076. // 设置请求体,使用url-encoded格式的数据
  10077. }
  10078. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10079. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10080. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10081. _userinfo = US.userInfo, //登录用户信息
  10082. _userid = US.userInfo.userid //登录用户id
  10083. let _iframe;
  10084. let _cid = cid,
  10085. _stage = stage,
  10086. _task = task,
  10087. _tool = tool;
  10088. var _jie = $$("div", {
  10089. "style": {
  10090. "position": "absolute",
  10091. "bottom": "50px",
  10092. "right": "50px",
  10093. "zIndex": "9999",
  10094. "backgroundColor": "#2268bc",
  10095. "color": "#fff",
  10096. "padding": "12px 20px",
  10097. "cursor": "pointer",
  10098. "borderRadius": "4px",
  10099. },
  10100. "innerHTML": "提交作业"
  10101. })
  10102. let aTool = ''
  10103. let _loading = document.createElement('div')
  10104. _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;"
  10105. // _loading.id = "";
  10106. let _lchild = document.createElement('div')
  10107. let _limg = document.createElement('img')
  10108. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10109. _limg.style = "width: 26px;margin-right: 10px;"
  10110. _lchild.appendChild(_limg)
  10111. let _lspan = document.createElement('span')
  10112. _lspan.innerHTML = "上传中..."
  10113. _lchild.appendChild(_lspan)
  10114. _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%);"
  10115. _loading.appendChild(_lchild)
  10116. var _box = $$('div', {
  10117. "style": {
  10118. "position": "relative",
  10119. "width": "100%",
  10120. "height": "100%",
  10121. },
  10122. })
  10123. _box.appendChild(_loading)
  10124. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10125. switch (str) {
  10126. case "CocoPi":
  10127. aTool = 57;
  10128. _iframe = $$("iframe", {
  10129. "allowpaymentrequest": "allowpaymentrequest",
  10130. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10131. "webkitallowfullscreen": "",
  10132. "mozallowfullscreen": "",
  10133. "frameborder": "no",
  10134. "border": "0",
  10135. "scrolling ": "no",
  10136. "style": {
  10137. "cssText": "border:0;width:100%;height:100%"
  10138. },
  10139. "src": "https://pi.cocorobo.cn/"
  10140. })
  10141. _box.appendChild(_iframe);
  10142. _box.appendChild(_jie);
  10143. _formdiv = new U.UF.UI.form(
  10144. "CocoPi",
  10145. _box, {
  10146. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10147. "style": {
  10148. "width": "90%",
  10149. "height": "90%",
  10150. "overflow": 'hidden'
  10151. },
  10152. "onresize": function () { }
  10153. }, {
  10154. closecallback: function () { }
  10155. }, {
  10156. "style": {
  10157. "height": "36px"
  10158. }
  10159. }).form; //创建窗体
  10160. _taskbar = {
  10161. "id": str + _formdiv.id,
  10162. "style": {
  10163. "backgroundImage": "url(/img/icon/cocopi.png)"
  10164. },
  10165. "name": "CocoPi",
  10166. "forms": _formdiv,
  10167. "click": function () {
  10168. U.MD.D.I.openApplication(str, obj, info);
  10169. }
  10170. }
  10171. break;
  10172. }
  10173. if (_iframe) {
  10174. if (str == 'CocoPi') {
  10175. _iframe = _formdiv.querySelector('iframe')
  10176. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10177. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10178. })
  10179. if (onloadListener) {
  10180. _iframe.contentDocument.location.reload()
  10181. } else {
  10182. _iframe.contentDocument.location.reload()
  10183. }
  10184. }
  10185. _jie.onclick = async () => {
  10186. let text = ''
  10187. if (aTool == 57) {
  10188. text = _iframe.contentWindow.getLoadXmlStr()
  10189. }
  10190. _loading.style.display = 'flex'
  10191. console.log(_loading);
  10192. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10193. _loading.style.display = 'none'
  10194. let _div = document.createElement('div')
  10195. _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;"
  10196. let _inner = document.createElement('div')
  10197. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10198. _inner.innerHTML = "上传成功"
  10199. _div.appendChild(_inner)
  10200. _iframe.contentWindow.window.document.body.appendChild(_div)
  10201. _div.onclick = () => {
  10202. _iframe.contentWindow.window.document.body.removeChild(_div)
  10203. }
  10204. setTimeout(() => {
  10205. _iframe.contentWindow.window.document.body.removeChild(_div)
  10206. }, 1000);
  10207. }, [], { "type": "POST", "withCredentials": true });
  10208. }
  10209. }
  10210. }
  10211. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10212. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10213. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10214. _userid = student.userid, //登录用户id
  10215. _username = student.student //用户名字
  10216. let _iframe;
  10217. let _cid = cid,
  10218. _stage = stage,
  10219. _task = task,
  10220. _tool = tool;
  10221. var _jie = $$("div", {
  10222. "style": {
  10223. "position": "absolute",
  10224. "bottom": "50px",
  10225. "right": "50px",
  10226. "zIndex": "9999",
  10227. "backgroundColor": "#2268bc",
  10228. "color": "#fff",
  10229. "padding": "12px 20px",
  10230. "cursor": "pointer",
  10231. "borderRadius": "4px",
  10232. },
  10233. "innerHTML": "提交作业"
  10234. })
  10235. let aTool = ''
  10236. let _loading = document.createElement('div')
  10237. _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;"
  10238. // _loading.id = "";
  10239. let _lchild = document.createElement('div')
  10240. let _limg = document.createElement('img')
  10241. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10242. _limg.style = "width: 26px;margin-right: 10px;"
  10243. _lchild.appendChild(_limg)
  10244. let _lspan = document.createElement('span')
  10245. _lspan.innerHTML = "上传中..."
  10246. _lchild.appendChild(_lspan)
  10247. _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%);"
  10248. _loading.appendChild(_lchild)
  10249. var _box = $$('div', {
  10250. "style": {
  10251. "position": "relative",
  10252. "width": "100%",
  10253. "height": "100%",
  10254. },
  10255. })
  10256. _box.appendChild(_loading)
  10257. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10258. switch (str) {
  10259. case "CocoPi":
  10260. aTool = 57;
  10261. _iframe = $$("iframe", {
  10262. "allowpaymentrequest": "allowpaymentrequest",
  10263. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10264. "webkitallowfullscreen": "",
  10265. "mozallowfullscreen": "",
  10266. "frameborder": "no",
  10267. "border": "0",
  10268. "scrolling ": "no",
  10269. "style": {
  10270. "cssText": "border:0;width:100%;height:100%"
  10271. },
  10272. "src": "https://pi.cocorobo.cn/"
  10273. })
  10274. _box.appendChild(_iframe);
  10275. _box.appendChild(_jie);
  10276. _formdiv = new U.UF.UI.form(
  10277. "CocoPi-" + _username,
  10278. _box, {
  10279. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10280. "style": {
  10281. "width": "90%",
  10282. "height": "90%",
  10283. "overflow": 'hidden'
  10284. },
  10285. "onresize": function () { }
  10286. }, {
  10287. closecallback: function () { }
  10288. }, {
  10289. "style": {
  10290. "height": "36px"
  10291. }
  10292. }).form; //创建窗体
  10293. _taskbar = {
  10294. "id": str + _formdiv.id,
  10295. "style": {
  10296. "backgroundImage": "url(/img/icon/cocopi.png)"
  10297. },
  10298. "name": "CocoPi",
  10299. "forms": _formdiv,
  10300. "click": function () {
  10301. U.MD.D.I.openApplication(str, obj, info);
  10302. }
  10303. }
  10304. break;
  10305. }
  10306. if (_iframe) {
  10307. if (str == 'CocoPi') {
  10308. _iframe = _formdiv.querySelector('iframe')
  10309. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10310. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10311. })
  10312. if (onloadListener) {
  10313. _iframe.contentDocument.location.reload()
  10314. } else {
  10315. _iframe.contentDocument.location.reload()
  10316. }
  10317. }
  10318. _jie.onclick = async () => {
  10319. let text = ''
  10320. if (aTool == 57) {
  10321. text = _iframe.contentWindow.getLoadXmlStr()
  10322. }
  10323. _loading.style.display = 'flex'
  10324. console.log(_loading);
  10325. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10326. _loading.style.display = 'none'
  10327. let _div = document.createElement('div')
  10328. _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;"
  10329. let _inner = document.createElement('div')
  10330. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10331. _inner.innerHTML = "上传成功"
  10332. _div.appendChild(_inner)
  10333. _iframe.contentWindow.window.document.body.appendChild(_div)
  10334. _div.onclick = () => {
  10335. _iframe.contentWindow.window.document.body.removeChild(_div)
  10336. }
  10337. setTimeout(() => {
  10338. _iframe.contentWindow.window.document.body.removeChild(_div)
  10339. }, 1000);
  10340. }, [], { "type": "POST", "withCredentials": true });
  10341. }
  10342. }
  10343. }
  10344. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10345. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10346. if (res.value[0].length > 0) {
  10347. if (atool == 57) {
  10348. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10349. }
  10350. } else {
  10351. if (atool == 57) {
  10352. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10353. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10354. }
  10355. }
  10356. }, [], { "type": "POST", "withCredentials": true });
  10357. }