DeskTop.js 655 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514
  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. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  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. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1520. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1525. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1526. ];
  1527. //010503
  1528. U.MD.D.I.x010503StudentDeskIcon = [
  1529. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1532. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1533. ];
  1534. //SPROUT Lab
  1535. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1536. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1537. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1538. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1539. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1540. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1543. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1545. ];
  1546. //SPROUT Lab
  1547. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. ];
  1552. //010204
  1553. U.MD.D.I.x010204TeacherDeskIcon = [
  1554. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1555. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1556. ];
  1557. //010204
  1558. U.MD.D.I.x010204StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //trail
  1565. U.MD.D.I.trailTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. ];
  1569. //trail
  1570. U.MD.D.I.trailStudentDeskIcon = [
  1571. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. ];
  1576. //010504
  1577. U.MD.D.I.x010504TeacherDeskIcon = [
  1578. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1579. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1581. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1585. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504StudentDeskIcon = [
  1589. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //SCNUET
  1595. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1601. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1602. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1603. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1604. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1605. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1606. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1607. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1608. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1609. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1610. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1611. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1613. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1614. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1615. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1616. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1617. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1618. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1619. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1620. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1621. ];
  1622. //SCNUET
  1623. U.MD.D.I.SCNUETAdminDeskIcon = [
  1624. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1625. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1628. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1629. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1630. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1631. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1632. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1633. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1634. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1635. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1636. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1637. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1638. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1641. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1642. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1643. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1644. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1645. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1646. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1647. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1648. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1649. ];
  1650. //SCNUET
  1651. U.MD.D.I.SCNUETStudentDeskIcon = [
  1652. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1653. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1655. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1656. ];
  1657. //x020201
  1658. U.MD.D.I.x020201TeacherDeskIcon = [
  1659. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1660. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1662. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1663. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1669. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1670. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1671. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1672. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1673. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1674. ];
  1675. //x020201
  1676. U.MD.D.I.x020201AdminDeskIcon = [
  1677. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1678. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. ];
  1694. //020201
  1695. U.MD.D.I.x020201StudentDeskIcon = [
  1696. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1698. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. ];
  1701. //010611
  1702. U.MD.D.I.x010611TeacherDeskIcon = [
  1703. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1704. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1710. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. ];
  1713. //010611
  1714. U.MD.D.I.x010611StudentDeskIcon = [
  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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //tianyuan
  1721. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1722. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1725. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1726. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1731. ];
  1732. //010611
  1733. U.MD.D.I.tianyuanStudentDeskIcon = [
  1734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1736. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1738. ];
  1739. //#region 桌面初始化a
  1740. /**
  1741. * 初始化桌面的起始函数
  1742. *
  1743. */
  1744. U.MD.D.I.init = function () {
  1745. if ($("#U_MD_D_K")[0]) {
  1746. //初始化桌面图标
  1747. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1748. // var clickUrl = ':12588/requestIp.php';
  1749. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1750. // U.MD.D.I.Ip = data;
  1751. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1752. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1753. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1754. // })
  1755. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1756. // })
  1757. }
  1758. }
  1759. /**
  1760. * 模式切换
  1761. *
  1762. */
  1763. U.MD.D.I.ModeCheck = function (type) {
  1764. if (US.Config.type == type) {
  1765. return
  1766. }
  1767. US.Config.type = type
  1768. $('.U_PBL_Check .active')[0].className = ''
  1769. if (type == 1) {
  1770. $('.U_PBL_Check div')[0].className = 'active'
  1771. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1772. } else {
  1773. $('.U_PBL_Check div')[1].className = 'active'
  1774. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1775. }
  1776. //初始化桌面图标
  1777. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1778. if (type == 2) {
  1779. U.MD.D.I.openApplication("project")
  1780. }
  1781. }
  1782. /**
  1783. * 隐藏任务栏
  1784. *
  1785. * @param {element} 桌面元素
  1786. */
  1787. U.MD.D.I.hiddenTaskbar = function (el) {
  1788. //任务栏位置变小
  1789. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1790. //桌面的位置变大
  1791. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1792. }
  1793. /**
  1794. * 隐藏任务栏
  1795. *
  1796. * @param {element} 桌面元素
  1797. */
  1798. U.MD.D.I.hiddenTaskbarout = function (el) {
  1799. //任务栏位置变小
  1800. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1801. //任务栏位置变化
  1802. U.selectEl(el).css({ "bottom": "-60px" });
  1803. //桌面的位置变大
  1804. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1805. }
  1806. }
  1807. /**
  1808. * 初始化打印桌面图标
  1809. *
  1810. * @param {element} 桌面元素
  1811. */
  1812. U.MD.D.I.initDesktopIcons = function (el, type) {
  1813. var i, //用于循环
  1814. _content, //桌面图标元素
  1815. _iconcontent, //桌面图标元素
  1816. _frag = $$("frag"), //定义一个碎片元素
  1817. _type = US.userInfo.type,
  1818. _org = US.userInfo.org,
  1819. _oid = US.userInfo.organizeid,
  1820. _role = US.userInfo.role,
  1821. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1822. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1823. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1824. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1825. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1826. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1827. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1828. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1829. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1830. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1831. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1832. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1833. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1834. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1835. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1836. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1837. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1838. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1839. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1840. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1841. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1842. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1843. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1844. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1845. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1846. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1847. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1848. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1849. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1850. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1851. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1852. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1853. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1854. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1855. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1856. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1857. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1858. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1859. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1860. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1861. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1862. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1863. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1864. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1865. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1866. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1867. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1868. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1869. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1870. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1871. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1872. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1873. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1874. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1875. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1876. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1877. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1878. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1879. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1880. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1881. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1882. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1883. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1884. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1885. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1886. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1887. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1888. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1889. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1890. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1891. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1892. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1893. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1894. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1895. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1896. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1897. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1898. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1899. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1900. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1901. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1902. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1903. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1904. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1905. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1906. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //010611
  1907. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //010611
  1908. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1909. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1910. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1911. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1912. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1913. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1914. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1915. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1916. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1917. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1918. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1919. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1920. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1921. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1922. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1923. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1924. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1925. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1926. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1927. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1928. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1929. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1930. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1931. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1932. 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'];
  1933. 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'];
  1934. //清楚桌面图标
  1935. el.innerHTML = "";
  1936. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1937. _teacherDesktopIconInfo.push(
  1938. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1939. { "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)" } },
  1940. )
  1941. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1942. }
  1943. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1944. _teacherDesktopIconInfo.push(
  1945. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1946. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1947. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1948. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1949. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1950. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1951. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1952. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1953. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1954. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1955. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1957. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1958. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1959. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1960. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1961. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1962. )
  1963. }
  1964. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1965. _teacherDesktopIconInfo.push(
  1966. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1967. )
  1968. }
  1969. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1970. // _teacherDesktopIconInfo.push(
  1971. // )
  1972. // }
  1973. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1974. _teacherDesktopIconInfo.push(
  1975. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1976. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1977. )
  1978. }
  1979. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1980. _teacherDesktopIconInfo.push(
  1981. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1982. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1983. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1984. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1985. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1986. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1987. )
  1988. _studentDesktopIconInfo.push(
  1989. )
  1990. }
  1991. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1992. _teacherDesktopIconInfo.push(
  1993. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1994. )
  1995. _studentDesktopIconInfo.push(
  1996. )
  1997. }
  1998. //010606 组织
  1999. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2000. _teacherDesktopIconInfo.push(
  2001. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2002. )
  2003. _studentDesktopIconInfo.push(
  2004. )
  2005. }
  2006. //麒麟二中 和 民新小学
  2007. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2008. _teacherDesktopIconInfo.push(
  2009. )
  2010. }
  2011. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2012. _teacherDesktopIconInfo.push(
  2013. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2014. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2016. )
  2017. }
  2018. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2019. _hkTeacherDeskIconInfo.push(
  2020. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. )
  2022. }
  2023. //北师大附中(010601)
  2024. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2025. // _teacherDesktopIconInfo.push(
  2026. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2027. // )
  2028. // _studentDesktopIconInfo.push(
  2029. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2030. // )
  2031. // }
  2032. //樂善堂余近卿中學
  2033. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2034. _teacherDesktopIconInfo.push(
  2035. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2036. )
  2037. }
  2038. // Education Artificial Intelligence
  2039. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2040. _teacherDesktopIconInfo.push(
  2041. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. )
  2043. }
  2044. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2045. _teacherDesktopIconInfo.push(
  2046. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2047. )
  2048. }
  2049. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2050. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2051. _teacherDesktopIconInfo.push(
  2052. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2053. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2054. )
  2055. }
  2056. //麒麟二中
  2057. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2058. _studentDesktopIconInfo.push(
  2059. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2060. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2061. )
  2062. }
  2063. //万科双语
  2064. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2065. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2066. if (el.Name == '项目管理') {
  2067. el.Name = 'PBL项目'
  2068. }
  2069. return el
  2070. })
  2071. _studentDesktopIconInfo3.push(
  2072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2073. )
  2074. }
  2075. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2076. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2077. return el.Name != '魔盒识字' && el.Name != '24点'
  2078. })
  2079. }
  2080. 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) {
  2081. _studentDesktopIconInfo.push(
  2082. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2083. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2084. )
  2085. }
  2086. //循环创建桌面图标
  2087. if (type == 1) {
  2088. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2089. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2090. _content = $$("div", {
  2091. className: "U_MD_D_KO",
  2092. "onmousedown": U.UF.C.closure(function (obj) {
  2093. //防止拖动图标即打开了桌面应用
  2094. U.MD.D.click(this, obj);
  2095. }, [_studentDesktopIconInfo[i]]),
  2096. "onclick": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_studentDesktopIconInfo[i]])
  2100. }, _frag); //
  2101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2104. }
  2105. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2106. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2107. _content = $$("div", {
  2108. className: "U_MD_D_KO",
  2109. "onmousedown": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2113. "onclick": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_hkZJLSStudentDeskIconInfo[i]])
  2117. }, _frag); //
  2118. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2119. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2120. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2121. } //
  2122. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2123. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2124. _content = $$("div", {
  2125. className: "U_MD_D_KO",
  2126. "onmousedown": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_ytyStudentDeskIconInfo[i]]),
  2130. "onclick": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_ytyStudentDeskIconInfo[i]])
  2134. }, _frag); //
  2135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2138. } //
  2139. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2140. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2141. _content = $$("div", {
  2142. className: "U_MD_D_KO",
  2143. "onmousedown": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_jccssylStudentDeskIconInfo[i]]),
  2147. "onclick": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_jccssylStudentDeskIconInfo[i]])
  2151. }, _frag); //
  2152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2155. }
  2156. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2157. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2158. _content = $$("div", {
  2159. className: "U_MD_D_KO",
  2160. "onmousedown": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_scnuaiStudentDeskIconInfo[i]]),
  2164. "onclick": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_scnuaiStudentDeskIconInfo[i]])
  2168. }, _frag); //
  2169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2172. }
  2173. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2174. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2175. _content = $$("div", {
  2176. className: "U_MD_D_KO",
  2177. "onmousedown": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_caleStudentDeskIconInfo[i]]),
  2181. "onclick": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_caleStudentDeskIconInfo[i]])
  2185. }, _frag); //
  2186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2189. }
  2190. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2191. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2192. _content = $$("div", {
  2193. className: "U_MD_D_KO",
  2194. "onmousedown": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_thuioeStudentDeskIconInfo[i]]),
  2198. "onclick": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_thuioeStudentDeskIconInfo[i]])
  2202. }, _frag); //
  2203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2206. }
  2207. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2208. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2209. _content = $$("div", {
  2210. className: "U_MD_D_KO",
  2211. "onmousedown": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_tpcStudentDeskIconInfo[i]]),
  2215. "onclick": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_tpcStudentDeskIconInfo[i]])
  2219. }, _frag); //
  2220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2223. } //
  2224. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2225. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2226. _content = $$("div", {
  2227. className: "U_MD_D_KO",
  2228. "onmousedown": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_chjyjStudentDeskIconInfo[i]]),
  2232. "onclick": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_chjyjStudentDeskIconInfo[i]])
  2236. }, _frag); //
  2237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2240. }
  2241. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2242. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2243. _content = $$("div", {
  2244. className: "U_MD_D_KO",
  2245. "onmousedown": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_szjkyStudentDeskIconInfo[i]]),
  2249. "onclick": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_szjkyStudentDeskIconInfo[i]])
  2253. }, _frag); //
  2254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2257. }
  2258. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2259. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2260. _content = $$("div", {
  2261. className: "U_MD_D_KO",
  2262. "onmousedown": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_x020201StudentDeskIconInfo[i]]),
  2266. "onclick": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_x020201StudentDeskIconInfo[i]])
  2270. }, _frag); //
  2271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2274. }
  2275. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2276. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2277. _content = $$("div", {
  2278. className: "U_MD_D_KO",
  2279. "onmousedown": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_SCNUETStudentDeskIconInfo[i]]),
  2283. "onclick": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_SCNUETStudentDeskIconInfo[i]])
  2287. }, _frag); //
  2288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2291. }
  2292. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2293. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2294. _content = $$("div", {
  2295. className: "U_MD_D_KO",
  2296. "onmousedown": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_dseiStudentDeskIconInfo[i]]),
  2300. "onclick": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_dseiStudentDeskIconInfo[i]])
  2304. }, _frag); //
  2305. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2306. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2307. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2308. }
  2309. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2310. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2327. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_nsfxStudentDeskIconInfo[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_nsfxStudentDeskIconInfo[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2342. }
  2343. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2344. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_stiaStudentDeskIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_stiaStudentDeskIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2359. }
  2360. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2361. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_szdjgStudentDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_szdjgStudentDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2378. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_x010607StudentDeskIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_x010607StudentDeskIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2395. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_xhlyStudentDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_xhlyStudentDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2412. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2427. }
  2428. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2429. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_x010503StudentDeskIconInfo[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_x010503StudentDeskIconInfo[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2444. }
  2445. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2446. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_x010504StudentDeskIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_x010504StudentDeskIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2463. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x010204StudentDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_x010204StudentDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2480. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_trailStudentDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_trailStudentDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2497. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2514. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_x010608StudentDeskIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_x010608StudentDeskIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2531. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_x010611StudentDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_x010611StudentDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2548. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_tianyuantudentDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tianyuantudentDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2565. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_siesStudentDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_siesStudentDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2582. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_guzmsStudentDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_guzmsStudentDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2599. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_hkStudentDeskIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_hkStudentDeskIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2616. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_hkaceStudentDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_hkaceStudentDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2633. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2634. _content = $$("div", {
  2635. className: "U_MD_D_KO",
  2636. "onmousedown": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2640. "onclick": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_BSDNSstudentDesktopIconInfo[i]])
  2644. }, _frag); //
  2645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2648. }
  2649. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2650. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2651. _content = $$("div", {
  2652. className: "U_MD_D_KO",
  2653. "onmousedown": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_cocobizStudentDeskIconInfo[i]]),
  2657. "onclick": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_cocobizStudentDeskIconInfo[i]])
  2661. }, _frag); //
  2662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2665. }
  2666. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2667. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_xxzjkyStudentDeskIconInfo[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2682. }
  2683. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2684. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_studentDesktopIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_studentDesktopIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2701. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2702. _content = $$("div", {
  2703. className: "U_MD_D_KO",
  2704. "onmousedown": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_tcStudentDeskIconInfo[i]]),
  2708. "onclick": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_tcStudentDeskIconInfo[i]])
  2712. }, _frag); //
  2713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2716. }
  2717. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2718. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2719. _content = $$("div", {
  2720. className: "U_MD_D_KO",
  2721. "onmousedown": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_szscStudentDeskIconInfo[i]]),
  2725. "onclick": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_szscStudentDeskIconInfo[i]])
  2729. }, _frag); //
  2730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2733. }
  2734. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2735. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2736. _content = $$("div", {
  2737. className: "U_MD_D_KO",
  2738. "onmousedown": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_studentDesktopIconInfo3[i]]),
  2742. "onclick": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_studentDesktopIconInfo3[i]])
  2746. }, _frag); //
  2747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2750. }
  2751. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2752. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_studentDesktopIconInfo2[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_studentDesktopIconInfo2[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2767. }
  2768. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2769. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2770. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2771. continue
  2772. }
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_wanketeacherDesktopIconInfo[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_wanketeacherDesktopIconInfo[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2787. }
  2788. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2789. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2790. _content = $$("div", {
  2791. className: "U_MD_D_KO",
  2792. "onmousedown": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_wankeAdminDesktopIconInfo[i]]),
  2796. "onclick": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_wankeAdminDesktopIconInfo[i]])
  2800. }, _frag); //
  2801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2804. }
  2805. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2806. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2807. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2808. continue
  2809. }
  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. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_scnuaiTeacherDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2826. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2827. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2828. continue
  2829. }
  2830. _content = $$("div", {
  2831. className: "U_MD_D_KO",
  2832. "onmousedown": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2836. "onclick": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_BSDNSteacherDesktopIconInfo[i]])
  2840. }, _frag); //
  2841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2844. }
  2845. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2846. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2847. _content = $$("div", {
  2848. className: "U_MD_D_KO",
  2849. "onmousedown": U.UF.C.closure(function (obj) {
  2850. //防止拖动图标即打开了桌面应用
  2851. U.MD.D.click(this, obj);
  2852. }, [_scnuaiAdminDeskIconInfo[i]]),
  2853. "onclick": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_scnuaiAdminDeskIconInfo[i]])
  2857. }, _frag); //
  2858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2861. }
  2862. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2863. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2864. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2865. continue
  2866. }
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_jccssylTeacherDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_jccssylTeacherDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2883. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2884. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2885. continue
  2886. }
  2887. _content = $$("div", {
  2888. className: "U_MD_D_KO",
  2889. "onmousedown": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_caleTeacherDeskIconInfo[i]]),
  2893. "onclick": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_caleTeacherDeskIconInfo[i]])
  2897. }, _frag); //
  2898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2901. }
  2902. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2903. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_tpcOrganizerDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_tpcOrganizerDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2920. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2921. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2922. continue
  2923. }
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_tpcTeacherDeskIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_tpcTeacherDeskIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2940. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2941. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2942. continue
  2943. }
  2944. _content = $$("div", {
  2945. className: "U_MD_D_KO",
  2946. "onmousedown": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_teacherDesktopIconInfo2[i]]),
  2950. "onclick": U.UF.C.closure(function (obj) {
  2951. //防止拖动图标即打开了桌面应用
  2952. U.MD.D.click(this, obj);
  2953. }, [_teacherDesktopIconInfo2[i]])
  2954. }, _frag); //
  2955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2958. }
  2959. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2960. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2961. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2962. continue
  2963. }
  2964. _content = $$("div", {
  2965. className: "U_MD_D_KO",
  2966. "onmousedown": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_thuioeTeacherDeskIconInfo[i]]),
  2970. "onclick": U.UF.C.closure(function (obj) {
  2971. //防止拖动图标即打开了桌面应用
  2972. U.MD.D.click(this, obj);
  2973. }, [_thuioeTeacherDeskIconInfo[i]])
  2974. }, _frag); //
  2975. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2976. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2977. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2978. }
  2979. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2980. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2981. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2982. continue
  2983. }
  2984. _content = $$("div", {
  2985. className: "U_MD_D_KO",
  2986. "onmousedown": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_lotechTeacherDeskIconInfo[i]]),
  2990. "onclick": U.UF.C.closure(function (obj) {
  2991. //防止拖动图标即打开了桌面应用
  2992. U.MD.D.click(this, obj);
  2993. }, [_lotechTeacherDeskIconInfo[i]])
  2994. }, _frag); //
  2995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2998. }//
  2999. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3000. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3001. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3002. continue
  3003. }
  3004. _content = $$("div", {
  3005. className: "U_MD_D_KO",
  3006. "onmousedown": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3010. "onclick": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3014. }, _frag); //
  3015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3018. }
  3019. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3020. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3021. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3022. continue
  3023. }
  3024. _content = $$("div", {
  3025. className: "U_MD_D_KO",
  3026. "onmousedown": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_siesTeacherDeskIconInfo[i]]),
  3030. "onclick": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_siesTeacherDeskIconInfo[i]])
  3034. }, _frag); //
  3035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3038. }
  3039. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3040. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3041. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3042. continue
  3043. }
  3044. _content = $$("div", {
  3045. className: "U_MD_D_KO",
  3046. "onmousedown": U.UF.C.closure(function (obj) {
  3047. //防止拖动图标即打开了桌面应用
  3048. U.MD.D.click(this, obj);
  3049. }, [_guzmsTeacherDeskIconInfo[i]]),
  3050. "onclick": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_guzmsTeacherDeskIconInfo[i]])
  3054. }, _frag); //
  3055. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3056. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3057. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3058. }
  3059. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3060. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3061. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3062. continue
  3063. }
  3064. _content = $$("div", {
  3065. className: "U_MD_D_KO",
  3066. "onmousedown": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_longhuaTeacherDeskIconInfo[i]]),
  3070. "onclick": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_longhuaTeacherDeskIconInfo[i]])
  3074. }, _frag); //
  3075. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3076. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3077. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3078. }
  3079. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3080. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3081. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3082. continue
  3083. }
  3084. _content = $$("div", {
  3085. className: "U_MD_D_KO",
  3086. "onmousedown": U.UF.C.closure(function (obj) {
  3087. //防止拖动图标即打开了桌面应用
  3088. U.MD.D.click(this, obj);
  3089. }, [_ytyTeacherDeskIconInfo[i]]),
  3090. "onclick": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_ytyTeacherDeskIconInfo[i]])
  3094. }, _frag); //
  3095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3098. }
  3099. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3100. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3101. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3102. continue
  3103. }
  3104. _content = $$("div", {
  3105. className: "U_MD_D_KO",
  3106. "onmousedown": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3110. "onclick": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_yunhaiTeacherDeskIconInfo[i]])
  3114. }, _frag); //
  3115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3118. } //_hkStudentDeskIconInfo
  3119. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3120. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3121. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3122. continue
  3123. }
  3124. _content = $$("div", {
  3125. className: "U_MD_D_KO",
  3126. "onmousedown": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3130. "onclick": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3134. }, _frag); //
  3135. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3136. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3137. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3138. }
  3139. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3140. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3141. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3142. continue
  3143. }
  3144. _content = $$("div", {
  3145. className: "U_MD_D_KO",
  3146. "onmousedown": U.UF.C.closure(function (obj) {
  3147. //防止拖动图标即打开了桌面应用
  3148. U.MD.D.click(this, obj);
  3149. }, [_hkTeacherDeskIconInfo[i]]),
  3150. "onclick": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_hkTeacherDeskIconInfo[i]])
  3154. }, _frag); //
  3155. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3156. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3157. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3158. }
  3159. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3160. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3161. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3162. continue
  3163. }
  3164. _content = $$("div", {
  3165. className: "U_MD_D_KO",
  3166. "onmousedown": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_hkaceTeacherDeskIconInfo[i]]),
  3170. "onclick": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_hkaceTeacherDeskIconInfo[i]])
  3174. }, _frag); //
  3175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3178. }
  3179. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3180. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3181. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3182. continue
  3183. }
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_cocobizTeacherDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_cocobizTeacherDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3200. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3201. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3202. continue
  3203. }
  3204. _content = $$("div", {
  3205. className: "U_MD_D_KO",
  3206. "onmousedown": U.UF.C.closure(function (obj) {
  3207. //防止拖动图标即打开了桌面应用
  3208. U.MD.D.click(this, obj);
  3209. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3210. "onclick": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3214. }, _frag); //
  3215. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3216. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3217. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3218. }
  3219. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3220. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3221. _content = $$("div", {
  3222. className: "U_MD_D_KO",
  3223. "onmousedown": U.UF.C.closure(function (obj) {
  3224. //防止拖动图标即打开了桌面应用
  3225. U.MD.D.click(this, obj);
  3226. }, [_gdjgAdminDeskIconInfo[i]]),
  3227. "onclick": U.UF.C.closure(function (obj) {
  3228. //防止拖动图标即打开了桌面应用
  3229. U.MD.D.click(this, obj);
  3230. }, [_gdjgAdminDeskIconInfo[i]])
  3231. }, _frag); //
  3232. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3233. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3234. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3235. }
  3236. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3237. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3238. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3239. continue
  3240. }
  3241. _content = $$("div", {
  3242. className: "U_MD_D_KO",
  3243. "onmousedown": U.UF.C.closure(function (obj) {
  3244. //防止拖动图标即打开了桌面应用
  3245. U.MD.D.click(this, obj);
  3246. }, [_gdjgTeacherDeskIconInfo[i]]),
  3247. "onclick": U.UF.C.closure(function (obj) {
  3248. //防止拖动图标即打开了桌面应用
  3249. U.MD.D.click(this, obj);
  3250. }, [_gdjgTeacherDeskIconInfo[i]])
  3251. }, _frag); //
  3252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3255. }
  3256. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3257. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3258. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3259. continue
  3260. }
  3261. _content = $$("div", {
  3262. className: "U_MD_D_KO",
  3263. "onmousedown": U.UF.C.closure(function (obj) {
  3264. //防止拖动图标即打开了桌面应用
  3265. U.MD.D.click(this, obj);
  3266. }, [_szherTeacherDeskIconInfo[i]]),
  3267. "onclick": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_szherTeacherDeskIconInfo[i]])
  3271. }, _frag); //
  3272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3275. }
  3276. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3277. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3278. _content = $$("div", {
  3279. className: "U_MD_D_KO",
  3280. "onmousedown": U.UF.C.closure(function (obj) {
  3281. //防止拖动图标即打开了桌面应用
  3282. U.MD.D.click(this, obj);
  3283. }, [_heyuannAdminDeskIconInfo[i]]),
  3284. "onclick": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_heyuannAdminDeskIconInfo[i]])
  3288. }, _frag); //
  3289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3292. }
  3293. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3294. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3295. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3296. continue
  3297. }
  3298. _content = $$("div", {
  3299. className: "U_MD_D_KO",
  3300. "onmousedown": U.UF.C.closure(function (obj) {
  3301. //防止拖动图标即打开了桌面应用
  3302. U.MD.D.click(this, obj);
  3303. }, [_heyuanTeacherDeskIconInfo[i]]),
  3304. "onclick": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_heyuanTeacherDeskIconInfo[i]])
  3308. }, _frag); //
  3309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3312. } //
  3313. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3314. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3315. _content = $$("div", {
  3316. className: "U_MD_D_KO",
  3317. "onmousedown": U.UF.C.closure(function (obj) {
  3318. //防止拖动图标即打开了桌面应用
  3319. U.MD.D.click(this, obj);
  3320. }, [_dseiAdminDeskIconInfo[i]]),
  3321. "onclick": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_dseiAdminDeskIconInfo[i]])
  3325. }, _frag); //
  3326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3329. }
  3330. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3331. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3332. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3333. continue
  3334. }
  3335. _content = $$("div", {
  3336. className: "U_MD_D_KO",
  3337. "onmousedown": U.UF.C.closure(function (obj) {
  3338. //防止拖动图标即打开了桌面应用
  3339. U.MD.D.click(this, obj);
  3340. }, [_dseiTeacherDeskIconInfo[i]]),
  3341. "onclick": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_dseiTeacherDeskIconInfo[i]])
  3345. }, _frag); //
  3346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3349. } //
  3350. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3351. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  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. }, [_chjyjAdminDeskIconInfo[i]]),
  3358. "onclick": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_chjyjAdminDeskIconInfo[i]])
  3362. }, _frag); //
  3363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3366. }//
  3367. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3368. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3369. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3370. continue
  3371. }
  3372. _content = $$("div", {
  3373. className: "U_MD_D_KO",
  3374. "onmousedown": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_chjyjTeacherDeskIconInfo[i]]),
  3378. "onclick": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_chjyjTeacherDeskIconInfo[i]])
  3382. }, _frag); //
  3383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3386. }
  3387. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3388. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  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. }, [_szjkyAdminDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_szjkyAdminDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3403. }//
  3404. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3405. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3406. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3407. continue
  3408. }
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_szjkyTeacherDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_szjkyTeacherDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3425. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  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. }, [_x020201AdminDeskIconInfo[i]]),
  3432. "onclick": U.UF.C.closure(function (obj) {
  3433. //防止拖动图标即打开了桌面应用
  3434. U.MD.D.click(this, obj);
  3435. }, [_x020201AdminDeskIconInfo[i]])
  3436. }, _frag); //
  3437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3440. }//
  3441. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3442. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3443. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3444. continue
  3445. }
  3446. _content = $$("div", {
  3447. className: "U_MD_D_KO",
  3448. "onmousedown": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_x020201TeacherDeskIconInfo[i]]),
  3452. "onclick": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_x020201TeacherDeskIconInfo[i]])
  3456. }, _frag); //
  3457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3460. }
  3461. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3462. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  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. }, [_SCNUETAdminDeskIconInfo[i]]),
  3469. "onclick": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_SCNUETAdminDeskIconInfo[i]])
  3473. }, _frag); //
  3474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3477. }//
  3478. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3479. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3480. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3481. continue
  3482. }
  3483. _content = $$("div", {
  3484. className: "U_MD_D_KO",
  3485. "onmousedown": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3489. "onclick": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_SCNUETTeacherDeskIconInfo[i]])
  3493. }, _frag); //
  3494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3497. }
  3498. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3499. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  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. }, [_futianAdminDeskIconInfo[i]]),
  3506. "onclick": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_futianAdminDeskIconInfo[i]])
  3510. }, _frag); //
  3511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3514. }
  3515. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3516. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3517. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3518. continue
  3519. }
  3520. _content = $$("div", {
  3521. className: "U_MD_D_KO",
  3522. "onmousedown": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_futianTeacherDeskIconInfo[i]]),
  3526. "onclick": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_futianTeacherDeskIconInfo[i]])
  3530. }, _frag); //
  3531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3534. }
  3535. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3536. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3537. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3538. continue
  3539. }
  3540. _content = $$("div", {
  3541. className: "U_MD_D_KO",
  3542. "onmousedown": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_MingdeTeacherDeskIcon[i]]),
  3546. "onclick": U.UF.C.closure(function (obj) {
  3547. //防止拖动图标即打开了桌面应用
  3548. U.MD.D.click(this, obj);
  3549. }, [_MingdeTeacherDeskIcon[i]])
  3550. }, _frag); //
  3551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3554. }
  3555. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3556. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_lhsAdminDesktopIconInfo[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_lhsAdminDesktopIconInfo[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3571. }
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3573. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3574. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3575. continue
  3576. }
  3577. _content = $$("div", {
  3578. className: "U_MD_D_KO",
  3579. "onmousedown": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_lhsteacherDesktopIconInfo[i]]),
  3583. "onclick": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_lhsteacherDesktopIconInfo[i]])
  3587. }, _frag); //
  3588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3591. }
  3592. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3593. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3594. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3595. continue
  3596. }
  3597. _content = $$("div", {
  3598. className: "U_MD_D_KO",
  3599. "onmousedown": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3603. "onclick": U.UF.C.closure(function (obj) {
  3604. //防止拖动图标即打开了桌面应用
  3605. U.MD.D.click(this, obj);
  3606. }, [_zhoujiateacherDesktopIconInfo[i]])
  3607. }, _frag); //
  3608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3611. }
  3612. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3613. for (i = 0; i < _hanDeskIcon.length; i++) {
  3614. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3615. continue
  3616. }
  3617. _content = $$("div", {
  3618. className: "U_MD_D_KO",
  3619. "onmousedown": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_hanDeskIcon[i]]),
  3623. "onclick": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_hanDeskIcon[i]])
  3627. }, _frag); //
  3628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3631. }
  3632. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3633. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3634. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3635. continue
  3636. }
  3637. _content = $$("div", {
  3638. className: "U_MD_D_KO",
  3639. "onmousedown": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_orgStemDeskIcon[i]]),
  3643. "onclick": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_orgStemDeskIcon[i]])
  3647. }, _frag); //
  3648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3651. }
  3652. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3653. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3654. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3655. continue
  3656. }
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_szulsDeskIcon[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_szulsDeskIcon[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3671. }
  3672. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3673. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3674. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_orgDesktopIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_orgDesktopIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3693. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3694. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3695. continue
  3696. }
  3697. _content = $$("div", {
  3698. className: "U_MD_D_KO",
  3699. "onmousedown": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_schoolDesktopIconInfo[i]]),
  3703. "onclick": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_schoolDesktopIconInfo[i]])
  3707. }, _frag); //
  3708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3711. }
  3712. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3713. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3714. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3715. continue
  3716. }
  3717. _content = $$("div", {
  3718. className: "U_MD_D_KO",
  3719. "onmousedown": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_GMteacherDesktopIconInfo[i]]),
  3723. "onclick": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_GMteacherDesktopIconInfo[i]])
  3727. }, _frag); //
  3728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3731. }
  3732. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3733. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3734. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3735. continue
  3736. }
  3737. _content = $$("div", {
  3738. className: "U_MD_D_KO",
  3739. "onmousedown": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_SONGteacherDesktopIconInfo[i]]),
  3743. "onclick": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_SONGteacherDesktopIconInfo[i]])
  3747. }, _frag); //
  3748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3751. }
  3752. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3753. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3754. _content = $$("div", {
  3755. className: "U_MD_D_KO",
  3756. "onmousedown": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_GMstudentDesktopIconInfo[i]]),
  3760. "onclick": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_GMstudentDesktopIconInfo[i]])
  3764. }, _frag); //
  3765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3768. }
  3769. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3770. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3771. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3772. continue
  3773. }
  3774. _content = $$("div", {
  3775. className: "U_MD_D_KO",
  3776. "onmousedown": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_tcTeacherDeskIconInfo[i]]),
  3780. "onclick": U.UF.C.closure(function (obj) {
  3781. //防止拖动图标即打开了桌面应用
  3782. U.MD.D.click(this, obj);
  3783. }, [_tcTeacherDeskIconInfo[i]])
  3784. }, _frag); //
  3785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3788. }
  3789. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3790. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3791. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3792. continue
  3793. }
  3794. _content = $$("div", {
  3795. className: "U_MD_D_KO",
  3796. "onmousedown": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_tcOrganizerDeskIconInfo[i]]),
  3800. "onclick": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_tcOrganizerDeskIconInfo[i]])
  3804. }, _frag); //
  3805. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3806. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3807. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3808. }
  3809. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3810. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3811. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3812. continue
  3813. }
  3814. _content = $$("div", {
  3815. className: "U_MD_D_KO",
  3816. "onmousedown": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_szscTeacherDeskIconInfo[i]]),
  3820. "onclick": U.UF.C.closure(function (obj) {
  3821. //防止拖动图标即打开了桌面应用
  3822. U.MD.D.click(this, obj);
  3823. }, [_szscTeacherDeskIconInfo[i]])
  3824. }, _frag); //
  3825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3828. }
  3829. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3830. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3831. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3832. continue
  3833. }
  3834. _content = $$("div", {
  3835. className: "U_MD_D_KO",
  3836. "onmousedown": U.UF.C.closure(function (obj) {
  3837. //防止拖动图标即打开了桌面应用
  3838. U.MD.D.click(this, obj);
  3839. }, [_szscOrganizerDeskIconInfo[i]]),
  3840. "onclick": U.UF.C.closure(function (obj) {
  3841. //防止拖动图标即打开了桌面应用
  3842. U.MD.D.click(this, obj);
  3843. }, [_szscOrganizerDeskIconInfo[i]])
  3844. }, _frag); //
  3845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3848. }
  3849. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3850. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3851. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3852. continue
  3853. }
  3854. _content = $$("div", {
  3855. className: "U_MD_D_KO",
  3856. "onmousedown": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_nsfxTeacherDeskIconInfo[i]]),
  3860. "onclick": U.UF.C.closure(function (obj) {
  3861. //防止拖动图标即打开了桌面应用
  3862. U.MD.D.click(this, obj);
  3863. }, [_nsfxTeacherDeskIconInfo[i]])
  3864. }, _frag); //
  3865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3868. }
  3869. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3870. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3871. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3872. continue
  3873. }
  3874. _content = $$("div", {
  3875. className: "U_MD_D_KO",
  3876. "onmousedown": U.UF.C.closure(function (obj) {
  3877. //防止拖动图标即打开了桌面应用
  3878. U.MD.D.click(this, obj);
  3879. }, [_stiaTeacherDeskIconInfo[i]]),
  3880. "onclick": U.UF.C.closure(function (obj) {
  3881. //防止拖动图标即打开了桌面应用
  3882. U.MD.D.click(this, obj);
  3883. }, [_stiaTeacherDeskIconInfo[i]])
  3884. }, _frag); //
  3885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3888. }
  3889. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3890. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3891. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3892. continue
  3893. }
  3894. _content = $$("div", {
  3895. className: "U_MD_D_KO",
  3896. "onmousedown": U.UF.C.closure(function (obj) {
  3897. //防止拖动图标即打开了桌面应用
  3898. U.MD.D.click(this, obj);
  3899. }, [_szdjgTeacherDeskIconInfo[i]]),
  3900. "onclick": U.UF.C.closure(function (obj) {
  3901. //防止拖动图标即打开了桌面应用
  3902. U.MD.D.click(this, obj);
  3903. }, [_szdjgTeacherDeskIconInfo[i]])
  3904. }, _frag); //
  3905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3908. }
  3909. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3910. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3911. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3912. continue
  3913. }
  3914. _content = $$("div", {
  3915. className: "U_MD_D_KO",
  3916. "onmousedown": U.UF.C.closure(function (obj) {
  3917. //防止拖动图标即打开了桌面应用
  3918. U.MD.D.click(this, obj);
  3919. }, [_x010607TeacherDeskIconInfo[i]]),
  3920. "onclick": U.UF.C.closure(function (obj) {
  3921. //防止拖动图标即打开了桌面应用
  3922. U.MD.D.click(this, obj);
  3923. }, [_x010607TeacherDeskIconInfo[i]])
  3924. }, _frag); //
  3925. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3926. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3927. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3928. }
  3929. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3930. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3931. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3932. continue
  3933. }
  3934. _content = $$("div", {
  3935. className: "U_MD_D_KO",
  3936. "onmousedown": U.UF.C.closure(function (obj) {
  3937. //防止拖动图标即打开了桌面应用
  3938. U.MD.D.click(this, obj);
  3939. }, [_xhlyTeacherDeskIconInfo[i]]),
  3940. "onclick": U.UF.C.closure(function (obj) {
  3941. //防止拖动图标即打开了桌面应用
  3942. U.MD.D.click(this, obj);
  3943. }, [_xhlyTeacherDeskIconInfo[i]])
  3944. }, _frag); //
  3945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3948. }
  3949. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3950. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3951. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3952. continue
  3953. }
  3954. _content = $$("div", {
  3955. className: "U_MD_D_KO",
  3956. "onmousedown": U.UF.C.closure(function (obj) {
  3957. //防止拖动图标即打开了桌面应用
  3958. U.MD.D.click(this, obj);
  3959. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3960. "onclick": U.UF.C.closure(function (obj) {
  3961. //防止拖动图标即打开了桌面应用
  3962. U.MD.D.click(this, obj);
  3963. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3964. }, _frag); //
  3965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3968. }
  3969. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3970. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3971. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3972. continue
  3973. }
  3974. _content = $$("div", {
  3975. className: "U_MD_D_KO",
  3976. "onmousedown": U.UF.C.closure(function (obj) {
  3977. //防止拖动图标即打开了桌面应用
  3978. U.MD.D.click(this, obj);
  3979. }, [_x010503TeacherDeskIconInfo[i]]),
  3980. "onclick": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_x010503TeacherDeskIconInfo[i]])
  3984. }, _frag); //
  3985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3988. }
  3989. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3990. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3991. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3992. continue
  3993. }
  3994. _content = $$("div", {
  3995. className: "U_MD_D_KO",
  3996. "onmousedown": U.UF.C.closure(function (obj) {
  3997. //防止拖动图标即打开了桌面应用
  3998. U.MD.D.click(this, obj);
  3999. }, [_x010504TeacherDeskIconInfo[i]]),
  4000. "onclick": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_x010504TeacherDeskIconInfo[i]])
  4004. }, _frag); //
  4005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4008. }
  4009. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4010. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4011. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4012. continue
  4013. }
  4014. _content = $$("div", {
  4015. className: "U_MD_D_KO",
  4016. "onmousedown": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_x010204TeacherDeskIconInfo[i]]),
  4020. "onclick": U.UF.C.closure(function (obj) {
  4021. //防止拖动图标即打开了桌面应用
  4022. U.MD.D.click(this, obj);
  4023. }, [_x010204TeacherDeskIconInfo[i]])
  4024. }, _frag); //
  4025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4028. }
  4029. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4030. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4031. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4032. continue
  4033. }
  4034. _content = $$("div", {
  4035. className: "U_MD_D_KO",
  4036. "onmousedown": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_trailTeacherDeskIconInfo[i]]),
  4040. "onclick": U.UF.C.closure(function (obj) {
  4041. //防止拖动图标即打开了桌面应用
  4042. U.MD.D.click(this, obj);
  4043. }, [_trailTeacherDeskIconInfo[i]])
  4044. }, _frag); //
  4045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4048. }
  4049. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4050. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4051. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4052. continue
  4053. }
  4054. _content = $$("div", {
  4055. className: "U_MD_D_KO",
  4056. "onmousedown": U.UF.C.closure(function (obj) {
  4057. //防止拖动图标即打开了桌面应用
  4058. U.MD.D.click(this, obj);
  4059. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4060. "onclick": U.UF.C.closure(function (obj) {
  4061. //防止拖动图标即打开了桌面应用
  4062. U.MD.D.click(this, obj);
  4063. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4064. }, _frag); //
  4065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4068. }
  4069. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4070. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4071. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4072. continue
  4073. }
  4074. _content = $$("div", {
  4075. className: "U_MD_D_KO",
  4076. "onmousedown": U.UF.C.closure(function (obj) {
  4077. //防止拖动图标即打开了桌面应用
  4078. U.MD.D.click(this, obj);
  4079. }, [_x010608TeacherDeskIconInfo[i]]),
  4080. "onclick": U.UF.C.closure(function (obj) {
  4081. //防止拖动图标即打开了桌面应用
  4082. U.MD.D.click(this, obj);
  4083. }, [_x010608TeacherDeskIconInfo[i]])
  4084. }, _frag); //
  4085. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4086. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4087. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4088. }
  4089. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4090. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4091. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4092. continue
  4093. }
  4094. _content = $$("div", {
  4095. className: "U_MD_D_KO",
  4096. "onmousedown": U.UF.C.closure(function (obj) {
  4097. //防止拖动图标即打开了桌面应用
  4098. U.MD.D.click(this, obj);
  4099. }, [_x010611TeacherDeskIconInfo[i]]),
  4100. "onclick": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_x010611TeacherDeskIconInfo[i]])
  4104. }, _frag); //
  4105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4108. }
  4109. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4110. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4111. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4112. continue
  4113. }
  4114. _content = $$("div", {
  4115. className: "U_MD_D_KO",
  4116. "onmousedown": U.UF.C.closure(function (obj) {
  4117. //防止拖动图标即打开了桌面应用
  4118. U.MD.D.click(this, obj);
  4119. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4120. "onclick": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_tianyuanTeacherDeskIconInfo[i]])
  4124. }, _frag); //
  4125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4128. }
  4129. } else {
  4130. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4131. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4132. continue
  4133. }
  4134. _content = $$("div", {
  4135. className: "U_MD_D_KO",
  4136. "onmousedown": U.UF.C.closure(function (obj) {
  4137. //防止拖动图标即打开了桌面应用
  4138. U.MD.D.click(this, obj);
  4139. }, [_teacherDesktopIconInfo[i]]),
  4140. "onclick": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_teacherDesktopIconInfo[i]])
  4144. }, _frag); //
  4145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4148. }
  4149. }
  4150. } else {
  4151. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4152. _content = $$("div", {
  4153. className: "U_MD_D_KO",
  4154. style: { 'width': '124px', 'height': '145px' },
  4155. "onmousedown": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_easyDesktopIconInfo[i]]),
  4159. "onclick": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_easyDesktopIconInfo[i]])
  4163. }, _frag); //
  4164. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4167. }
  4168. }
  4169. if (type == 1) {
  4170. //加载好后给图标定位
  4171. U.MD.D.iconPostion($(_frag).Child());
  4172. } else {
  4173. //加载好后给图标定位
  4174. U.MD.D.iconPostion2($(_frag).Child());
  4175. }
  4176. //把图标加载到页面
  4177. el.appendChild(_frag);
  4178. }
  4179. /**
  4180. * 显示任务栏
  4181. *
  4182. * @param {element} 桌面元素
  4183. */
  4184. U.MD.D.I.displayTaskbar = function (el) {
  4185. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4186. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4187. //任务栏位置变化
  4188. U.selectEl(el).css({ "bottom": "0px" });
  4189. //桌面位置变话
  4190. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4191. }
  4192. }
  4193. //#region 桌面图标拖动逻辑
  4194. /**
  4195. * 桌面排列图标
  4196. *
  4197. * @param {element} 桌面元素
  4198. * @param {object} 上下相距的距离
  4199. * @param {object} 左右相距的距离
  4200. * @return {object} 命名空间
  4201. */
  4202. U.MD.D.iconPostion = function (childs, top, left) {
  4203. var i; //用于循环处理
  4204. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4205. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4206. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4207. for (i = 0; i < childs.length; i++) {
  4208. //如果竖排top超过了范围处理
  4209. if (top + 95 > US.height - 10) {
  4210. //left超过了页面范围处理,则向上重叠打印处理
  4211. if ((left + 180) > US.width) {
  4212. top -= 110;
  4213. left -= 90;
  4214. }
  4215. //没有超过范围,那么left+90添加到下一个竖排打印
  4216. else {
  4217. left += 90;
  4218. top = 15;
  4219. };
  4220. }
  4221. //给图标的位置赋值
  4222. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4223. if (i < childs.length - 1) {
  4224. //页面图标每次向下加95
  4225. top += 95;
  4226. }
  4227. }
  4228. //返回最后调用的图标的位置
  4229. return [top, left];
  4230. }
  4231. /**
  4232. * 桌面排列图标
  4233. *
  4234. * @param {element} 桌面元素
  4235. * @param {object} 上下相距的距离
  4236. * @param {object} 左右相距的距离
  4237. * @return {object} 命名空间
  4238. */
  4239. U.MD.D.iconPostion2 = function (childs, top, left) {
  4240. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4241. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4242. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4243. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4244. for (i = 0; i < childs.length; i++) {
  4245. //如果竖排top超过了范围处理
  4246. if (left + 150 > US.width - 10) {
  4247. //left超过了页面范围处理,则向上重叠打印处理
  4248. if ((top + 180) > US.Height) {
  4249. top -= 150;
  4250. left -= 150;
  4251. }
  4252. //没有超过范围,那么left+90添加到下一个竖排打印
  4253. else {
  4254. top += 150;
  4255. left = ol;
  4256. };
  4257. }
  4258. //给图标的位置赋值
  4259. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4260. if (i < childs.length - 1) {
  4261. //页面图标每次向下加95
  4262. left += 150;
  4263. }
  4264. }
  4265. //返回最后调用的图标的位置
  4266. return [top, left];
  4267. }
  4268. /**
  4269. * 桌面点击事件逻辑
  4270. *
  4271. * @param {element} 桌面元素
  4272. * @param {object} 上下相距的距离
  4273. * @param {object} 左右相距的距离
  4274. * @return {object} 命名空间
  4275. */
  4276. U.MD.D.click = function (el, obj) {
  4277. var _buttonnumber = event.button; //点击的按钮的事件值
  4278. var _userinfo = US.userInfo;
  4279. U.UF.EV.stopBubble(); //阻止向上冒泡
  4280. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4281. if (_buttonnumber < 2) {
  4282. //如果是click事件的处理
  4283. if (event.type == "click") {
  4284. //如果元素在mousemove事件中没有移动则出发click事件
  4285. if (!U.MD.D.I.IsDrag) {
  4286. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4287. U.alert("请先登录您的账号!");
  4288. setTimeout(() => {
  4289. U.MD.U.L.login();
  4290. }, 2000);
  4291. } else {
  4292. //打开应用处理
  4293. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4294. }
  4295. }
  4296. }
  4297. //如果是mouse事件的处理
  4298. else {
  4299. if (US.Config.type == '1') {
  4300. //拖动处理,添加拖动和拖动结束事件
  4301. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4302. }
  4303. }
  4304. U.MD.D.I.IsDrag = false;
  4305. }
  4306. }
  4307. /**
  4308. * 拖动的处理
  4309. *
  4310. */
  4311. U.MD.D.iconMove = function () {
  4312. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4313. U.MD.D.I.IsDrag = true;
  4314. }
  4315. /**
  4316. * 拖动结束后,这里是定位处理,以网状的形式定位
  4317. *
  4318. * @param {element} 拖动的元素
  4319. * @return {object} 命名空间
  4320. */
  4321. U.MD.D.iconUp = function (el) {
  4322. var _top = 15,
  4323. _left = 20,
  4324. _margin,
  4325. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4326. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4327. if (_positioninfo["OT"] > 15) {
  4328. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4329. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4330. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4331. }
  4332. if (_positioninfo["OL"] > 20) {
  4333. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4334. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4335. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4336. }
  4337. //while循环判断么一个重叠的元素
  4338. do {
  4339. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4340. _top = _positioninfo[0] + 95; //得到定位后的top
  4341. _left = _positioninfo[1]; //得到定位后的left
  4342. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4343. }
  4344. /**
  4345. * 判断拖动后图标是否重叠
  4346. *
  4347. * @param {element} 拖动的元素
  4348. * @param {element} 桌面所有的元素
  4349. * @param {array} 拖动元素的位置
  4350. ----------[0] 上 top
  4351. ----------[1] 左 left
  4352. * @return {object} 命名空间
  4353. */
  4354. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4355. //循环所有的图标
  4356. for (var i = 0; i < childs.length; i++) {
  4357. //判断有没有和该图标诶子重叠的元素
  4358. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4359. return childs[i]; //如果有返回
  4360. }
  4361. }
  4362. }
  4363. //#endregion
  4364. //#endregion
  4365. //#region 桌面应用
  4366. /**
  4367. * 打开应用
  4368. *
  4369. * @param {string} 类型
  4370. -----------------Disk 网盘系统
  4371. -----------------PDisk 学习系统网盘
  4372. -----------------Poto 图片
  4373. -----------------Video 视频
  4374. -----------------Music 音乐
  4375. -----------------Word word
  4376. -----------------Excel excel
  4377. -----------------Txt 记事本
  4378. -----------------PB 学习系统
  4379. -----------------Blog 朋友圈系统
  4380. -----------------FTP ftp系统
  4381. -----------------Group 好友群
  4382. -----------------SY 首页系统
  4383. -----------------Set 个人设置
  4384. -----------------XSet 系统设置
  4385. -----------------App 我们所有的app
  4386. -----------------BC c.1473.cn 平台
  4387. -----------------CWeb d.1473.cn 变成平台
  4388. -----------------其他的外联系统 我们统一用iframe打开
  4389. * @param {array} 类型
  4390. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4391. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4392. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4393. 如果第一个参数为其他,则无第二个参数
  4394. * @returns {array}
  4395. */
  4396. window.addEventListener('message', function (e) { // 监听 message 事件
  4397. // alert(e.data.type);
  4398. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4399. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4400. //3是展示全部阶段 2学生 1老师 4专家
  4401. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4402. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4403. //3是展示全部阶段 2学生 1老师 4专家
  4404. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4405. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4406. //3是展示全部阶段 2学生 1老师 4专家
  4407. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4408. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4409. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4410. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4411. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4412. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4413. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4415. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4417. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4418. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4419. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4421. //3是展示全部阶段 2学生 1老师 4专家
  4422. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4424. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4425. U.MD.D.I.selectUser();
  4426. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4427. var _formel = document.getElementById("study");
  4428. U.UF.F.windowZooming(_formel);
  4429. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4430. var _formel = document.getElementById("studyDetail");
  4431. U.UF.F.windowZooming(_formel);
  4432. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4433. var _formel = document.getElementById("studyDetail");
  4434. U.UF.F.windowZooming(_formel);
  4435. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4436. var _formel = document.getElementById("studentStudy");
  4437. U.UF.F.windowZooming(_formel);
  4438. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4439. // var _formel = document.getElementById("study");
  4440. //如果最大化了,那么就把他缩小
  4441. // if (_formel.ismaximize) {
  4442. // return;
  4443. // }
  4444. // U.UF.F.windowZooming(_formel);
  4445. // U.UF.F.topWindow(_formel);
  4446. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4447. // var _formel = document.getElementById("studyDetail");
  4448. //如果最大化了,那么就把他缩小
  4449. // if (_formel.ismaximize) {
  4450. // return;
  4451. // }
  4452. // U.UF.F.windowZooming(_formel);
  4453. // U.UF.F.topWindow(_formel);
  4454. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4455. // var _formel = document.getElementById("studentStudy");
  4456. // if (_formel.ismaximize) {
  4457. // return;
  4458. // }
  4459. // U.UF.F.windowZooming(_formel);
  4460. // U.UF.F.topWindow(_formel);
  4461. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4462. var _formel = document.getElementById("study");
  4463. // if (_formel.ismaximize) {
  4464. // return;
  4465. // }
  4466. // U.UF.F.windowZooming(_formel);
  4467. U.UF.F.topWindow(_formel);
  4468. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4469. var _formel = document.getElementById("studentIndex");
  4470. U.UF.F.windowZooming(_formel);
  4471. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4472. var _formel = document.getElementById("studyDetailS");
  4473. U.UF.F.windowZooming(_formel);
  4474. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4475. var _formel = document.getElementById("studioIndex");
  4476. U.UF.F.windowZooming(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4478. var _formel = document.getElementById("studyDetailStudio");
  4479. U.UF.F.windowZooming(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4481. var _formel = document.getElementById("studyDetailStudio");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4484. var _formel = document.getElementById("studyDetailNT");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4487. var _formel = document.getElementById("studyDetailS");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4490. var _formel = document.getElementById("studyDetailS");
  4491. U.UF.F.topWindow(_formel);
  4492. } else if (e.data.tools && e.data.tools == "1") {
  4493. // U.MD.D.I.openApplication("whiteboard")
  4494. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4495. } else if (e.data.tools && e.data.tools == "2") {
  4496. U.MD.D.I.openApplication("note")
  4497. } else if (e.data.tools && e.data.tools == "3") {
  4498. // U.MD.D.I.openApplication("mind")
  4499. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4500. } else if (e.data.tools && e.data.tools == "4") {
  4501. U.MD.D.I.openApplication("investigation")
  4502. } else if (e.data.tools && e.data.tools == "6") {
  4503. // U.MD.D.I.openApplication("doc")
  4504. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4505. } else if (e.data.tools && e.data.tools == "7") {
  4506. // U.MD.D.I.openApplication("mindNetwork")
  4507. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4508. } else if (e.data.tools && e.data.tools == "8") {
  4509. U.MD.D.I.openApplication("library")
  4510. } else if (e.data.tools && e.data.tools == "17") {
  4511. U.MD.D.I.openApplication("stuLibrary")
  4512. } else if (e.data.tools && e.data.tools == "18") {
  4513. U.MD.D.I.openApplication("train")
  4514. } else if (e.data.tools && e.data.tools == "21") {
  4515. U.MD.D.I.openApplication("program")
  4516. } else if (e.data.tools && e.data.tools == "22") {
  4517. U.MD.D.I.openApplication("AIprogram2")
  4518. } else if (e.data.tools && e.data.tools == "23") {
  4519. U.MD.D.I.openApplication("Pythonprogram")
  4520. } else if (e.data.tools && e.data.tools == "24") {
  4521. U.MD.D.I.openApplication("AIprogram")
  4522. } else if (e.data.tools && e.data.tools == "25") {
  4523. U.MD.D.I.openApplication("sys")
  4524. } else if (e.data.tools && e.data.tools == "26") {
  4525. // U.MD.D.I.openApplication("courseDesign")
  4526. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4527. } else if (e.data.tools && e.data.tools == "31") {
  4528. U.MD.D.I.openApplication("netWorkPanel")
  4529. } else if (e.data.tools && e.data.tools == "32") {
  4530. U.MD.D.I.openApplication("codeEdit")
  4531. } else if (e.data.tools && e.data.tools == "57") {
  4532. U.MD.D.I.openApplication("CocoPi")
  4533. } else if (e.data.tools && e.data.tools == "63") {
  4534. U.MD.D.I.openApplication("Wood")
  4535. } else if (e.data.tools && e.data.tools == "58") {
  4536. U.MD.D.I.openApplication("car")
  4537. } else if (e.data.tools && e.data.tools == "59") {
  4538. U.MD.D.I.openApplication("lineSearch")
  4539. } else if (e.data.tools && e.data.tools == "60") {
  4540. U.MD.D.I.openApplication("deepLearning")
  4541. } else if (e.data.tools && e.data.tools == "61") {
  4542. U.MD.D.I.openApplication("allHistory")
  4543. } else if (e.data.tools && e.data.tools == "28") {
  4544. U.MD.D.I.openApplication("translation")
  4545. } else if (e.data.tools && e.data.tools == "37") {
  4546. U.MD.D.I.openApplication("mohe")
  4547. } else if (e.data.tools && e.data.tools == "38") {
  4548. U.MD.D.I.openApplication("24game")
  4549. } else if (e.data.tools && e.data.tools == "39") {
  4550. U.MD.D.I.openApplication("GeoGebra")
  4551. } else if (e.data.tools && e.data.tools == "43") {
  4552. U.MD.D.I.openApplication("studentEvaluate")
  4553. } else if (e.data.tools && e.data.tools == "44") {
  4554. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4555. } else if (e.data.tools && e.data.tools == "46") {
  4556. U.MD.D.I.openApplication("project")
  4557. } else if (e.data.tools && e.data.tools == "71") {
  4558. U.MD.D.I.openApplication("aigptCourse")
  4559. } else if (e.data.tools && e.data.tools == "1s") {
  4560. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4561. } else if (e.data.tools && e.data.tools == "3s") {
  4562. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4563. } else if (e.data.tools && e.data.tools == "6s") {
  4564. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4565. } else if (e.data.tools && e.data.tools == "1studio") {
  4566. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4567. } else if (e.data.tools && e.data.tools == "3studio") {
  4568. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4569. } else if (e.data.tools && e.data.tools == "6studio") {
  4570. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4571. } else if (e.data.tools && e.data.tools == "3y") {
  4572. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "1y") {
  4574. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4576. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4577. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4578. U.MD.D.I.openApplication("AIAnalyse")
  4579. } else if (e.data.tools && e.data.tools == "1teacher") {
  4580. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4581. } else if (e.data.tools && e.data.tools == "3teacher") {
  4582. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4583. } else if (e.data.tools && e.data.tools == "7teacher") {
  4584. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4585. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4586. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4587. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4588. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4589. } else if (e.data.tools && e.data.tools == "1E") {
  4590. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4591. } else if (e.data.tools && e.data.tools == "3E") {
  4592. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4593. } else if (e.data.tools && e.data.tools == "57y") {
  4594. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4595. } else if (e.data.tools && e.data.tools == "57u") {
  4596. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4597. } else if (e.data.tools && e.data.tools == "57teacher") {
  4598. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4599. } else if (e.data.tools && e.data.tools == "64") {
  4600. U.MD.D.I.openApplication("AIChat")
  4601. } else if (e.data.tools && e.data.tools == "66") {
  4602. U.MD.D.I.openApplication("formulaEdi")
  4603. } else if (e.data.tools && e.data.tools == "67") {
  4604. U.MD.D.I.openApplication("molStr")
  4605. } else if (e.data.tools && e.data.tools == "68") {
  4606. U.MD.D.I.openApplication("timeAxis")
  4607. } else if (e.data.tools && e.data.tools == "openCourse") {
  4608. let _data = {
  4609. typea: e.data.typea || '',
  4610. typeb: e.data.typeb || '',
  4611. typed: e.data.typed || '',
  4612. }
  4613. U.MD.D.I.openInApplication("index", _data)
  4614. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4615. let _data = {
  4616. classid: e.data.classid || '',
  4617. }
  4618. U.MD.D.I.openInApplication("dataClass", _data)
  4619. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4620. let _data = {
  4621. cid: e.data.cid || '',
  4622. gid: e.data.gid || '',
  4623. }
  4624. U.MD.D.I.openInApplication("opencCscl", _data)
  4625. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4626. U.MD.D.I.openApplication("dataBoardTest")
  4627. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4628. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4629. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4630. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4631. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4632. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4633. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4634. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4635. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4636. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4637. }else if (e.data.tools && e.data.tools == "loginSz") {
  4638. U.MD.D.I.openInApplication("loginSz")
  4639. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4640. if($('#classroom_observation_board')[0]){
  4641. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4642. }
  4643. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4644. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4645. if($('#classroom_observation_ob_comment')[0]){
  4646. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4647. }
  4648. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4649. }
  4650. });
  4651. U.MD.D.I.selectUser = function () {
  4652. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4653. if (res.value[0].length > 0) {
  4654. US.userInfo = res.value[0][0];
  4655. $(".userName")[0].innerHTML = US.userInfo.username;
  4656. }
  4657. }, [], { "type": "GET", "withCredentials": true });
  4658. }
  4659. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4660. var _userinfo = US.userInfo, //登录用户信息
  4661. _userid = US.userInfo.userid, //登录用户id
  4662. _oid = _userinfo.organizeid,
  4663. _type = US.userInfo.type,
  4664. _org = US.userInfo.org,
  4665. _role = US.userInfo.role,
  4666. _classId = US.userInfo.classid;
  4667. if (_type == 4) {
  4668. tType = 4
  4669. }
  4670. switch (str) {
  4671. case "studyDetailNT": //无终端模式
  4672. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4673. setTimeout(() => {
  4674. U.MD.U.L.login();
  4675. }, 2000);
  4676. } else {
  4677. _formdiv = new U.UF.UI.form(
  4678. "课程详情",
  4679. $$("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 }), {
  4680. "id": "studyDetailNT",
  4681. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4682. "onresize": function () { }
  4683. }, {
  4684. closecallback: function () { }
  4685. }, { "style": { "height": "36px" } }).form; //创建窗体
  4686. _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); } }
  4687. break;
  4688. }
  4689. case "studyDetail":
  4690. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4691. setTimeout(() => {
  4692. U.MD.U.L.login();
  4693. }, 2000);
  4694. } else {
  4695. _formdiv = new U.UF.UI.form(
  4696. "课程详情",
  4697. $$("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 }), {
  4698. "id": "studyDetail",
  4699. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4700. "onresize": function () { }
  4701. }, {
  4702. closecallback: function () { }
  4703. }, { "style": { "height": "36px" } }).form; //创建窗体
  4704. _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); } }
  4705. break;
  4706. }
  4707. case "studyDetailTrain":
  4708. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4709. setTimeout(() => {
  4710. U.MD.U.L.login();
  4711. }, 2000);
  4712. } else {
  4713. _formdiv = new U.UF.UI.form(
  4714. "培训详情",
  4715. $$("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 }), {
  4716. "id": "studyDetailTrain",
  4717. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4718. "onresize": function () { }
  4719. }, {
  4720. closecallback: function () { }
  4721. }, { "style": { "height": "36px" } }).form; //创建窗体
  4722. _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); } }
  4723. break;
  4724. }
  4725. case "studyDetailS":
  4726. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4727. setTimeout(() => {
  4728. U.MD.U.L.login();
  4729. }, 2000);
  4730. } else {
  4731. _formdiv = new U.UF.UI.form(
  4732. "项目详情",
  4733. $$("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 }), {
  4734. "id": "studyDetailS",
  4735. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4736. "onresize": function () { }
  4737. }, {
  4738. closecallback: function () { }
  4739. }, { "style": { "height": "36px" } }).form; //创建窗体
  4740. _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); } }
  4741. break;
  4742. }
  4743. case "studyDetailStudio":
  4744. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4745. setTimeout(() => {
  4746. U.MD.U.L.login();
  4747. }, 2000);
  4748. } else {
  4749. _formdiv = new U.UF.UI.form(
  4750. "工作详情",
  4751. $$("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 }), {
  4752. "id": "studyDetailStudio",
  4753. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4754. "onresize": function () { }
  4755. }, {
  4756. closecallback: function () { }
  4757. }, { "style": { "height": "36px" } }).form; //创建窗体
  4758. _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); } }
  4759. break;
  4760. }
  4761. case "studyDetailS5":
  4762. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4763. setTimeout(() => {
  4764. U.MD.U.L.login();
  4765. }, 2000);
  4766. } else {
  4767. _formdiv = new U.UF.UI.form(
  4768. "项目详情",
  4769. $$("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 }), {
  4770. "id": "studyDetailS",
  4771. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4772. "onresize": function () { }
  4773. }, {
  4774. closecallback: function () { }
  4775. }, { "style": { "height": "36px" } }).form; //创建窗体
  4776. _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); } }
  4777. break;
  4778. }
  4779. case "studyDetailGM":
  4780. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4781. setTimeout(() => {
  4782. U.MD.U.L.login();
  4783. }, 2000);
  4784. } else {
  4785. _formdiv = new U.UF.UI.form(
  4786. "课程详情",
  4787. $$("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 }), {
  4788. "id": "studyDetail",
  4789. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. _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); } }
  4795. break;
  4796. }
  4797. case "hanUrl":
  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": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4806. "id": "hanUrl",
  4807. "style": { "width": "90%", "height": "90%", "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/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4813. break;
  4814. }
  4815. case "index":
  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/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  4824. "id": "study",
  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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4831. break;
  4832. }
  4833. case "dataClass":
  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-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4842. "id": "dataClass",
  4843. "style": { "width": "90%", "height": "90%", "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/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4849. break;
  4850. }
  4851. case "opencCscl":
  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": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4860. "id": "futureClass",
  4861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4862. "onresize": function () { }
  4863. }, {
  4864. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4865. }, { "style": { "height": "36px" } }).form; //创建窗体
  4866. _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); } }
  4867. break;
  4868. }
  4869. case "openCourseUpdate":
  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-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4878. "id": "openCourseUpdate",
  4879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4880. "onresize": function () { }
  4881. }, {
  4882. closecallback: function () { }
  4883. }, { "style": { "height": "36px" } }).form; //创建窗体
  4884. break;
  4885. }
  4886. case "openNewCourseUpdate":
  4887. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4888. setTimeout(() => {
  4889. U.MD.U.L.login();
  4890. }, 2000);
  4891. } else {
  4892. _formdiv = new U.UF.UI.form(
  4893. "课程管理",
  4894. $$("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 }), {
  4895. "id": "openCourseUpdate",
  4896. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4897. "onresize": function () { }
  4898. }, {
  4899. closecallback: function () { }
  4900. }, { "style": { "height": "36px" } }).form; //创建窗体
  4901. break;
  4902. }
  4903. case "openCourseEUpdate":
  4904. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4905. setTimeout(() => {
  4906. U.MD.U.L.login();
  4907. }, 2000);
  4908. } else {
  4909. _formdiv = new U.UF.UI.form(
  4910. "课程管理",
  4911. $$("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 }), {
  4912. "id": "openCourseUpdate",
  4913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. break;
  4919. }
  4920. case "openCourseAiUpdate":
  4921. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4922. setTimeout(() => {
  4923. U.MD.U.L.login();
  4924. }, 2000);
  4925. } else {
  4926. _formdiv = new U.UF.UI.form(
  4927. "课程管理",
  4928. $$("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 }), {
  4929. "id": "openCourseUpdate",
  4930. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4931. "onresize": function () { }
  4932. }, {
  4933. closecallback: function () { }
  4934. }, { "style": { "height": "36px" } }).form; //创建窗体
  4935. break;
  4936. }
  4937. case "openCourseNewUpdate":
  4938. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4939. setTimeout(() => {
  4940. U.MD.U.L.login();
  4941. }, 2000);
  4942. } else {
  4943. _formdiv = new U.UF.UI.form(
  4944. "课程管理",
  4945. $$("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 }), {
  4946. "id": "openCourseUpdate",
  4947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4948. "onresize": function () { }
  4949. }, {
  4950. closecallback: function () { }
  4951. }, { "style": { "height": "36px" } }).form; //创建窗体
  4952. break;
  4953. }
  4954. case "inviteLoginSz":
  4955. _formdiv = new U.UF.UI.form(
  4956. "随机码登录",
  4957. $$("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 }), {
  4958. "id": "loginSz",
  4959. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4960. "onresize": function () { }
  4961. }, {
  4962. closecallback: function () { }
  4963. }, { "style": { "height": "36px" } }).form; //创建窗体
  4964. break;
  4965. case "loginSz":
  4966. _formdiv = new U.UF.UI.form(
  4967. "教师登录",
  4968. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  4969. "id": "loginSz",
  4970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. closecallback: function () { }
  4974. }, { "style": { "height": "36px" } }).form; //创建窗体
  4975. break;
  4976. case "teacher":
  4977. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4978. setTimeout(() => {
  4979. U.MD.U.L.login();
  4980. }, 2000);
  4981. } else {
  4982. _formdiv = new U.UF.UI.form(
  4983. "教师管理",
  4984. $$("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 }), {
  4985. "id": "teacher",
  4986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4987. "onresize": function () { }
  4988. }, {
  4989. closecallback: function () { }
  4990. }, { "style": { "height": "36px" } }).form; //创建窗体
  4991. break;
  4992. }
  4993. case "dataBoardSZArea":
  4994. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4995. setTimeout(() => {
  4996. U.MD.U.L.login();
  4997. }, 2000);
  4998. } else {
  4999. _formdiv = new U.UF.UI.form(
  5000. "综合数据看板",
  5001. $$("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 }), {
  5002. "id": "dataBoardSZArea",
  5003. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. break;
  5009. }
  5010. case "dataBoardSZCity":
  5011. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5012. setTimeout(() => {
  5013. U.MD.U.L.login();
  5014. }, 2000);
  5015. } else {
  5016. _formdiv = new U.UF.UI.form(
  5017. "综合数据看板",
  5018. $$("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 }), {
  5019. "id": "dataBoardSZCity",
  5020. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5021. "onresize": function () { }
  5022. }, {
  5023. closecallback: function () { }
  5024. }, { "style": { "height": "36px" } }).form; //创建窗体
  5025. break;
  5026. }
  5027. case "classroom_observation_board":
  5028. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5029. setTimeout(() => {
  5030. U.MD.U.L.login();
  5031. }, 2000);
  5032. } else {
  5033. _formdiv = new U.UF.UI.form(
  5034. "课堂观察",
  5035. $$("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 }), {
  5036. "id": "classroom_observation_board",
  5037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5038. "onresize": function () { }
  5039. }, {
  5040. closecallback: function () { }
  5041. }, { "style": { "height": "36px" } }).form; //创建窗体
  5042. break;
  5043. }
  5044. case "classroom_observation_ob_comment":
  5045. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5046. setTimeout(() => {
  5047. U.MD.U.L.login();
  5048. }, 2000);
  5049. } else {
  5050. _formdiv = new U.UF.UI.form(
  5051. "课堂审核",
  5052. $$("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 }), {
  5053. "id": "classroom_observation_ob_comment",
  5054. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5055. "onresize": function () { }
  5056. }, {
  5057. closecallback: function () { }
  5058. }, { "style": { "height": "36px" } }).form; //创建窗体
  5059. break;
  5060. }
  5061. }
  5062. }
  5063. U.MD.D.I.openApplication = function (str, obj, info) {
  5064. obj = obj || {};
  5065. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5066. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5067. _userinfo = US.userInfo, //登录用户信息
  5068. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5069. _oid = obj.organizeid || _userinfo.organizeid,
  5070. _type = US.userInfo.type,
  5071. _org = US.userInfo.org,
  5072. _role = US.userInfo.role,
  5073. _classId = US.userInfo.classid,
  5074. _TscreenType = 1
  5075. _screenType = 2,
  5076. _SscreenType = 3;
  5077. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5078. return;
  5079. }
  5080. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5081. switch (str) {
  5082. case "studnetProject": //好友打开
  5083. _formdiv = new U.UF.UI.form(
  5084. "我的项目",
  5085. $$("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 }), {
  5086. "id": "studnetProject",
  5087. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5088. "onresize": function () { }
  5089. }, {
  5090. closecallback: function () { }
  5091. }, { "style": { "height": "36px" } }).form; //创建窗体
  5092. _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); } }
  5093. break;
  5094. case "studentEvaluate": //好友打开
  5095. _formdiv = new U.UF.UI.form(
  5096. "我的评价",
  5097. $$("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 }), {
  5098. "id": "studentEvaluate",
  5099. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5100. "onresize": function () { }
  5101. }, {
  5102. closecallback: function () { }
  5103. }, { "style": { "height": "36px" } }).form; //创建窗体
  5104. _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); } }
  5105. break;
  5106. case "my":
  5107. _formdiv = new U.UF.UI.form(
  5108. "我的资料",
  5109. $$("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 }), {
  5110. "id": "my",
  5111. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. _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); } }
  5117. break;
  5118. case "program":
  5119. _formdiv = new U.UF.UI.form(
  5120. "编程平台",
  5121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5122. "id": "program",
  5123. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5124. "onresize": function () { }
  5125. }, {
  5126. closecallback: function () { }
  5127. }, { "style": { "height": "36px" } }).form; //创建窗体
  5128. _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); } }
  5129. break;
  5130. case "library":
  5131. _formdiv = new U.UF.UI.form(
  5132. "素材库",
  5133. $$("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 }), {
  5134. "id": "library",
  5135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5136. "onresize": function () { }
  5137. }, {
  5138. closecallback: function () { }
  5139. }, { "style": { "height": "36px" } }).form; //创建窗体
  5140. _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); } }
  5141. break;
  5142. case "whiteboard":
  5143. _formdiv = new U.UF.UI.form(
  5144. "电子白板",
  5145. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5146. "id": "whiteboard",
  5147. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. _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); } }
  5153. break;
  5154. case "investigation":
  5155. _formdiv = new U.UF.UI.form(
  5156. "问卷调查",
  5157. $$("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 }), {
  5158. "id": "investigation",
  5159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5160. "onresize": function () { }
  5161. }, {
  5162. closecallback: function () { }
  5163. }, { "style": { "height": "36px" } }).form; //创建窗体
  5164. _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); } }
  5165. break;
  5166. case "note":
  5167. _formdiv = new U.UF.UI.form(
  5168. "便签分类",
  5169. $$("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 }), {
  5170. "id": "note",
  5171. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5172. "onresize": function () { }
  5173. }, {
  5174. closecallback: function () { }
  5175. }, { "style": { "height": "36px" } }).form; //创建窗体
  5176. _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); } }
  5177. break;
  5178. // case "score":
  5179. // _formdiv = new U.UF.UI.form(
  5180. // "量规评分",
  5181. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5182. // "id": "score",
  5183. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5184. // "onresize": function() {}
  5185. // }, {
  5186. // closecallback: function() {}
  5187. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. // _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); } }
  5189. // break;
  5190. case "mind":
  5191. _formdiv = new U.UF.UI.form(
  5192. "思维导图",
  5193. $$("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"
  5194. "id": "mind",
  5195. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. _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); } }
  5201. break;
  5202. case "doc":
  5203. // U.MD.D.I.isRoom();
  5204. _formdiv = new U.UF.UI.form(
  5205. "协同文档",
  5206. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5207. "id": "doc",
  5208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5209. "onresize": function () { }
  5210. }, {
  5211. closecallback: function () { }
  5212. }, { "style": { "height": "36px" } }).form; //创建窗体
  5213. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5214. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5215. // })
  5216. _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); } }
  5217. break;
  5218. case "studentStudy":
  5219. _formdiv = new U.UF.UI.form(
  5220. "课程中心",
  5221. $$("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
  5222. "id": "studentStudy",
  5223. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _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); } }
  5229. break;
  5230. case "train": //好友打开
  5231. _formdiv = new U.UF.UI.form(
  5232. "训练平台",
  5233. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5234. "id": "train",
  5235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. _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); } }
  5241. break;
  5242. case "mindNetwork": //好友打开
  5243. _formdiv = new U.UF.UI.form(
  5244. "思维网格",
  5245. $$("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 }), {
  5246. "id": "mindNetwork",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. case "studentClassRoom": //好友打开
  5255. _formdiv = new U.UF.UI.form(
  5256. "实时课堂",
  5257. $$("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 }), {
  5258. "id": "studentClassRoom",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _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); } }
  5265. setTimeout(() => {
  5266. U.UF.F.windowZooming(_formdiv)
  5267. }, 0);
  5268. break;
  5269. }
  5270. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5271. switch (str) {
  5272. case "studnetProject": //好友打开
  5273. _formdiv = new U.UF.UI.form(
  5274. "我的项目",
  5275. $$("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 }), {
  5276. "id": "studnetProject",
  5277. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5278. "onresize": function () { }
  5279. }, {
  5280. closecallback: function () { }
  5281. }, { "style": { "height": "36px" } }).form; //创建窗体
  5282. _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); } }
  5283. break;
  5284. case "studentEvaluate": //好友打开
  5285. _formdiv = new U.UF.UI.form(
  5286. "我的评价",
  5287. $$("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 }), {
  5288. "id": "studentEvaluate",
  5289. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5290. "onresize": function () { }
  5291. }, {
  5292. closecallback: function () { }
  5293. }, { "style": { "height": "36px" } }).form; //创建窗体
  5294. _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); } }
  5295. break;
  5296. case "my":
  5297. _formdiv = new U.UF.UI.form(
  5298. "我的资料",
  5299. $$("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 }), {
  5300. "id": "my",
  5301. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. _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); } }
  5307. break;
  5308. case "program":
  5309. _formdiv = new U.UF.UI.form(
  5310. "编程平台",
  5311. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5312. "id": "program",
  5313. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5314. "onresize": function () { }
  5315. }, {
  5316. closecallback: function () { }
  5317. }, { "style": { "height": "36px" } }).form; //创建窗体
  5318. _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); } }
  5319. break;
  5320. case "library":
  5321. _formdiv = new U.UF.UI.form(
  5322. "素材库",
  5323. $$("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 }), {
  5324. "id": "library",
  5325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _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); } }
  5331. break;
  5332. case "whiteboard":
  5333. _formdiv = new U.UF.UI.form(
  5334. "电子白板",
  5335. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5336. "id": "whiteboard",
  5337. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. _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); } }
  5343. break;
  5344. case "investigation":
  5345. _formdiv = new U.UF.UI.form(
  5346. "问卷调查",
  5347. $$("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 }), {
  5348. "id": "investigation",
  5349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5350. "onresize": function () { }
  5351. }, {
  5352. closecallback: function () { }
  5353. }, { "style": { "height": "36px" } }).form; //创建窗体
  5354. _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); } }
  5355. break;
  5356. case "note":
  5357. _formdiv = new U.UF.UI.form(
  5358. "便签分类",
  5359. $$("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 }), {
  5360. "id": "note",
  5361. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. _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); } }
  5367. break;
  5368. // case "score":
  5369. // _formdiv = new U.UF.UI.form(
  5370. // "量规评分",
  5371. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5372. // "id": "score",
  5373. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5374. // "onresize": function() {}
  5375. // }, {
  5376. // closecallback: function() {}
  5377. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. // _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); } }
  5379. // break;
  5380. case "mind":
  5381. _formdiv = new U.UF.UI.form(
  5382. "思维导图",
  5383. $$("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"
  5384. "id": "mind",
  5385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. _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); } }
  5391. break;
  5392. case "doc":
  5393. // U.MD.D.I.isRoom();
  5394. _formdiv = new U.UF.UI.form(
  5395. "协同文档",
  5396. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5397. "id": "doc",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5404. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5405. })
  5406. _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); } }
  5407. break;
  5408. case "train": //好友打开
  5409. _formdiv = new U.UF.UI.form(
  5410. "训练平台",
  5411. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5412. "id": "train",
  5413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5414. "onresize": function () { }
  5415. }, {
  5416. closecallback: function () { }
  5417. }, { "style": { "height": "36px" } }).form; //创建窗体
  5418. _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); } }
  5419. break;
  5420. case "studentStudy":
  5421. _formdiv = new U.UF.UI.form(
  5422. "课程中心",
  5423. $$("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
  5424. "id": "studentStudy",
  5425. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. _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); } }
  5431. break;
  5432. case "mindNetwork": //好友打开
  5433. _formdiv = new U.UF.UI.form(
  5434. "思维网格",
  5435. $$("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 }), {
  5436. "id": "mindNetwork",
  5437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5438. "onresize": function () { }
  5439. }, {
  5440. closecallback: function () { }
  5441. }, { "style": { "height": "36px" } }).form; //创建窗体
  5442. _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); } }
  5443. break;
  5444. case "studentClassRoom": //好友打开
  5445. _formdiv = new U.UF.UI.form(
  5446. "实时课堂",
  5447. $$("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 }), {
  5448. "id": "studentClassRoom",
  5449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5450. "onresize": function () { }
  5451. }, {
  5452. closecallback: function () { }
  5453. }, { "style": { "height": "36px" } }).form; //创建窗体
  5454. _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); } }
  5455. setTimeout(() => {
  5456. U.UF.F.windowZooming(_formdiv)
  5457. }, 0);
  5458. break;
  5459. }
  5460. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5461. //选择应用处理
  5462. switch (str) {
  5463. case "project": //好友打开
  5464. _formdiv = new U.UF.UI.form(
  5465. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5466. $$("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 }), {
  5467. "id": "project",
  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/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5474. break;
  5475. case "student":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5479. "id": "student",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5486. break;
  5487. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5491. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5498. break;
  5499. case "sys":
  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/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5503. "id": "sys",
  5504. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5510. break;
  5511. case "courseDesign":
  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": "/course-design-vue" }), {
  5515. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5522. break;
  5523. case "program":
  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": "https://x.cocorobo.cn" }), {
  5527. "id": "program",
  5528. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5534. break;
  5535. case "class":
  5536. _formdiv = new U.UF.UI.form(
  5537. "班级管理",
  5538. $$("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 }), {
  5539. "id": "class",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _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); } }
  5546. break;
  5547. case "Grade":
  5548. _formdiv = new U.UF.UI.form(
  5549. "年级管理",
  5550. $$("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 }), {
  5551. "id": "Grade",
  5552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _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); } }
  5558. break;
  5559. case "teacherOffice":
  5560. _formdiv = new U.UF.UI.form(
  5561. "教研室",
  5562. $$("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 }), {
  5563. "id": "teacherOffice",
  5564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _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); } }
  5570. break;
  5571. case "my":
  5572. _formdiv = new U.UF.UI.form(
  5573. "我的资料",
  5574. $$("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 }), {
  5575. "id": "my",
  5576. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _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); } }
  5582. break;
  5583. case "notice":
  5584. _formdiv = new U.UF.UI.form(
  5585. "通知公告",
  5586. $$("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 }), {
  5587. "id": "notice",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. _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); } }
  5594. break;
  5595. case "library":
  5596. _formdiv = new U.UF.UI.form(
  5597. "素材库",
  5598. $$("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 }), {
  5599. "id": "library",
  5600. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. _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); } }
  5606. break;
  5607. case "whiteboard":
  5608. _formdiv = new U.UF.UI.form(
  5609. "电子白板",
  5610. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5611. "id": "whiteboard",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _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); } }
  5618. break;
  5619. case "investigation":
  5620. _formdiv = new U.UF.UI.form(
  5621. "问卷调查",
  5622. $$("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 }), {
  5623. "id": "investigation",
  5624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, { "style": { "height": "36px" } }).form; //创建窗体
  5629. _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); } }
  5630. break;
  5631. case "note":
  5632. _formdiv = new U.UF.UI.form(
  5633. "便签分类",
  5634. $$("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 }), {
  5635. "id": "note",
  5636. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5637. "onresize": function () { }
  5638. }, {
  5639. closecallback: function () { }
  5640. }, { "style": { "height": "36px" } }).form; //创建窗体
  5641. _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); } }
  5642. break;
  5643. // case "score":
  5644. // _formdiv = new U.UF.UI.form(
  5645. // "量规评分",
  5646. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5647. // "id": "score",
  5648. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5649. // "onresize": function() {}
  5650. // }, {
  5651. // closecallback: function() {}
  5652. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5653. // _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); } }
  5654. // break;
  5655. case "mind":
  5656. _formdiv = new U.UF.UI.form(
  5657. "思维导图",
  5658. $$("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"
  5659. "id": "mind",
  5660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5661. "onresize": function () { }
  5662. }, {
  5663. closecallback: function () { }
  5664. }, { "style": { "height": "36px" } }).form; //创建窗体
  5665. _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); } }
  5666. break;
  5667. case "doc":
  5668. // U.MD.D.I.isRoom();
  5669. _formdiv = new U.UF.UI.form(
  5670. "协同文档",
  5671. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5672. "id": "doc",
  5673. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5674. "onresize": function () { }
  5675. }, {
  5676. closecallback: function () { }
  5677. }, { "style": { "height": "36px" } }).form; //创建窗体
  5678. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5679. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5680. })
  5681. _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); } }
  5682. break;
  5683. case "study":
  5684. _formdiv = new U.UF.UI.form(
  5685. "课程中心",
  5686. $$("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
  5687. "id": "study",
  5688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5694. break;
  5695. case "mindNetwork": //好友打开
  5696. _formdiv = new U.UF.UI.form(
  5697. "思维网格",
  5698. $$("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 }), {
  5699. "id": "mindNetwork",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5706. break;
  5707. case "train": //好友打开
  5708. _formdiv = new U.UF.UI.form(
  5709. "训练平台",
  5710. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5711. "id": "mindNetwork",
  5712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5718. break;
  5719. case "teacherClassRoom": //好友打开
  5720. _formdiv = new U.UF.UI.form(
  5721. "实时课堂",
  5722. $$("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 }), {
  5723. "id": "teacherClassRoom",
  5724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5725. "onresize": function () { }
  5726. }, {
  5727. closecallback: function () { }
  5728. }, { "style": { "height": "36px" } }).form; //创建窗体
  5729. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5730. setTimeout(() => {
  5731. U.UF.F.windowZooming(_formdiv)
  5732. }, 0);
  5733. break;
  5734. }
  5735. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5736. switch (str) {
  5737. case "project": //好友打开
  5738. _formdiv = new U.UF.UI.form(
  5739. "课程管理",
  5740. $$("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 }), {
  5741. "id": "project",
  5742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5743. "onresize": function () { }
  5744. }, {
  5745. closecallback: function () { }
  5746. }, { "style": { "height": "36px" } }).form; //创建窗体
  5747. _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); } }
  5748. break;
  5749. case "evaluate":
  5750. _formdiv = new U.UF.UI.form(
  5751. "学生评价",
  5752. $$("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 }), {
  5753. "id": "evaluate",
  5754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //创建窗体
  5759. _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); } }
  5760. break;
  5761. case "notice":
  5762. _formdiv = new U.UF.UI.form(
  5763. "通知公告",
  5764. $$("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 }), {
  5765. "id": "notice",
  5766. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5767. "onresize": function () { }
  5768. }, {
  5769. closecallback: function () { }
  5770. }, { "style": { "height": "36px" } }).form; //创建窗体
  5771. _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); } }
  5772. break;
  5773. case "stuLibrary":
  5774. _formdiv = new U.UF.UI.form(
  5775. "学习资料",
  5776. $$("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 }), {
  5777. "id": "stuLibrary",
  5778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //创建窗体
  5783. _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); } }
  5784. break;
  5785. case "program":
  5786. _formdiv = new U.UF.UI.form(
  5787. "编程平台",
  5788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5789. "id": "program",
  5790. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, { "style": { "height": "36px" } }).form; //创建窗体
  5795. _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); } }
  5796. break;
  5797. case "whiteboard":
  5798. _formdiv = new U.UF.UI.form(
  5799. "电子白板",
  5800. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5801. "id": "whiteboard",
  5802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5803. "onresize": function () { }
  5804. }, {
  5805. closecallback: function () { }
  5806. }, { "style": { "height": "36px" } }).form; //创建窗体
  5807. _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); } }
  5808. break;
  5809. case "investigation":
  5810. _formdiv = new U.UF.UI.form(
  5811. "问卷调查",
  5812. $$("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 }), {
  5813. "id": "investigation",
  5814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //创建窗体
  5819. _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); } }
  5820. break;
  5821. case "mind":
  5822. _formdiv = new U.UF.UI.form(
  5823. "思维导图",
  5824. $$("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"
  5825. "id": "mind",
  5826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. _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); } }
  5832. break;
  5833. case "doc":
  5834. // U.MD.D.I.isRoom();
  5835. _formdiv = new U.UF.UI.form(
  5836. "协同文档",
  5837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5838. "id": "doc",
  5839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5845. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5846. })
  5847. _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); } }
  5848. break;
  5849. case "study":
  5850. _formdiv = new U.UF.UI.form(
  5851. "课程中心",
  5852. $$("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
  5853. "id": "study",
  5854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5855. "onresize": function () { }
  5856. }, {
  5857. closecallback: function () { }
  5858. }, { "style": { "height": "36px" } }).form; //创建窗体
  5859. _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); } }
  5860. break;
  5861. case "mindNetwork": //好友打开
  5862. _formdiv = new U.UF.UI.form(
  5863. "思维网格",
  5864. $$("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 }), {
  5865. "id": "mindNetwork",
  5866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5867. "onresize": function () { }
  5868. }, {
  5869. closecallback: function () { }
  5870. }, { "style": { "height": "36px" } }).form; //创建窗体
  5871. _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); } }
  5872. break;
  5873. case "train": //好友打开
  5874. _formdiv = new U.UF.UI.form(
  5875. "训练平台",
  5876. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5877. "id": "train",
  5878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _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); } }
  5884. break;
  5885. case "sys":
  5886. _formdiv = new U.UF.UI.form(
  5887. "目标管理",
  5888. $$("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 }), {
  5889. "id": "sys",
  5890. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. _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); } }
  5896. break;
  5897. case "courseDesign":
  5898. _formdiv = new U.UF.UI.form(
  5899. "项目设计",
  5900. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5901. "id": "courseDesign",
  5902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _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); } }
  5908. break;
  5909. }
  5910. } else if (!_type) {
  5911. switch (str) {
  5912. case "my":
  5913. _formdiv = new U.UF.UI.form(
  5914. "我的资料",
  5915. $$("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 }), {
  5916. "id": "my",
  5917. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5918. "onresize": function () { }
  5919. }, {
  5920. closecallback: function () { }
  5921. }, { "style": { "height": "36px" } }).form; //创建窗体
  5922. _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); } }
  5923. break;
  5924. }
  5925. }
  5926. switch (str) {
  5927. // AIprogram2 AI体验 aihub.cocorobo.cn
  5928. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5929. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5930. case "formulaEdi": //公式编辑
  5931. _formdiv = new U.UF.UI.form(
  5932. "公式编辑",
  5933. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5934. "id": "formulaEdi",
  5935. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5936. "onresize": function () { }
  5937. }, {
  5938. closecallback: function () { }
  5939. }, { "style": { "height": "36px" } }).form; //创建窗体
  5940. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5941. break;
  5942. case "molStr": //分子结构
  5943. _formdiv = new U.UF.UI.form(
  5944. "分子结构",
  5945. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5946. "id": "molStr",
  5947. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5948. "onresize": function () { }
  5949. }, {
  5950. closecallback: function () { }
  5951. }, { "style": { "height": "36px" } }).form; //创建窗体
  5952. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5953. break;
  5954. case "timeAxis": //时间轴
  5955. _formdiv = new U.UF.UI.form(
  5956. "时间轴",
  5957. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5958. "id": "timeAxis",
  5959. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //创建窗体
  5964. _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); } }
  5965. break;
  5966. case "AIprogram2": //AI体验
  5967. _formdiv = new U.UF.UI.form(
  5968. "AI体验",
  5969. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5970. "id": "AIprogram2",
  5971. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, { "style": { "height": "36px" } }).form; //创建窗体
  5976. _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); } }
  5977. break;
  5978. case "Pythonprogram": //python编程
  5979. _formdiv = new U.UF.UI.form(
  5980. "Python编程",
  5981. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5982. "id": "Pythonprogram",
  5983. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5984. "onresize": function () { }
  5985. }, {
  5986. closecallback: function () { }
  5987. }, { "style": { "height": "36px" } }).form; //创建窗体
  5988. _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); } }
  5989. break;
  5990. case "AIprogram": //ai编程
  5991. _formdiv = new U.UF.UI.form(
  5992. "AI编程平台",
  5993. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5994. "id": "AIprogram",
  5995. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, { "style": { "height": "36px" } }).form; //创建窗体
  6000. _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); } }
  6001. break;
  6002. case "CocoPi": //CocoPi
  6003. _formdiv = new U.UF.UI.form(
  6004. "CocoPi",
  6005. $$("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" }), {
  6006. "id": "CocoPi",
  6007. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _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); } }
  6013. break;
  6014. case "Wood": //Wood
  6015. _formdiv = new U.UF.UI.form(
  6016. "海龟编程",
  6017. $$("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/" }), {
  6018. "id": "Wood",
  6019. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //创建窗体
  6024. _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); } }
  6025. break;
  6026. case "car": //模拟驾驶
  6027. _formdiv = new U.UF.UI.form(
  6028. "模拟驾驶",
  6029. $$("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/" }), {
  6030. "id": "car",
  6031. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, { "style": { "height": "36px" } }).form; //创建窗体
  6036. _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); } }
  6037. break;
  6038. case "lineSearch": //路径搜索
  6039. _formdiv = new U.UF.UI.form(
  6040. "路径搜索",
  6041. $$("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/" }), {
  6042. "id": "lineSearch",
  6043. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6044. "onresize": function () { }
  6045. }, {
  6046. closecallback: function () { }
  6047. }, { "style": { "height": "36px" } }).form; //创建窗体
  6048. _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); } }
  6049. break;
  6050. case "deepLearning": //深度学习
  6051. _formdiv = new U.UF.UI.form(
  6052. "深度学习",
  6053. $$("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/#" }), {
  6054. "id": "deepLearning",
  6055. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, { "style": { "height": "36px" } }).form; //创建窗体
  6060. _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); } }
  6061. break;
  6062. case "allHistory": //深度学习
  6063. _formdiv = new U.UF.UI.form(
  6064. "全历史",
  6065. $$("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/" }), {
  6066. "id": "allHistory",
  6067. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _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); } }
  6073. break;
  6074. case "chatPDF": //ai编程
  6075. _formdiv = new U.UF.UI.form(
  6076. "chatPDF",
  6077. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6078. "id": "chatPDF",
  6079. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //创建窗体
  6084. _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); } }
  6085. break;
  6086. case "resources": //国家教育
  6087. _formdiv = new U.UF.UI.form(
  6088. "国家教育",
  6089. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6090. "id": "resources",
  6091. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //创建窗体
  6096. _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); } }
  6097. break;
  6098. case "codeEdit": //源码编辑
  6099. _formdiv = new U.UF.UI.form(
  6100. "源码编辑",
  6101. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6102. "id": "codeEdit",
  6103. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //创建窗体
  6108. _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); } }
  6109. break; //
  6110. case "MindMap": //MindMap
  6111. _formdiv = new U.UF.UI.form(
  6112. "MindMap",
  6113. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6114. "id": "MindMap",
  6115. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //创建窗体
  6120. _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); } }
  6121. break;
  6122. case "netWorkPanel": //netWorkPanel
  6123. _formdiv = new U.UF.UI.form(
  6124. "netWorkPanel",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6126. "id": "netWorkPanel",
  6127. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. _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); } }
  6133. break;
  6134. case "GeoGebra": //GeoGebra
  6135. _formdiv = new U.UF.UI.form(
  6136. "GeoGebra",
  6137. $$("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" }), {
  6138. "id": "GeoGebra",
  6139. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. _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); } }
  6145. break;
  6146. case "translation": //翻译
  6147. _formdiv = new U.UF.UI.form(
  6148. "翻译",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6150. "id": "translation",
  6151. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //创建窗体
  6156. _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); } }
  6157. break;
  6158. case "mohe": //魔盒
  6159. _formdiv = new U.UF.UI.form(
  6160. "魔盒识字",
  6161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6162. "id": "mohe",
  6163. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //创建窗体
  6168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6169. break;
  6170. case "24game": //24点
  6171. _formdiv = new U.UF.UI.form(
  6172. "24点",
  6173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6174. "id": "24game",
  6175. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6176. "onresize": function () { }
  6177. }, {
  6178. closecallback: function () { }
  6179. }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6181. break;
  6182. case "case":
  6183. _formdiv = new U.UF.UI.form(
  6184. "课程进展",
  6185. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6186. "id": "case",
  6187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6188. "onresize": function () { }
  6189. }, {
  6190. closecallback: function () { }
  6191. }, { "style": { "height": "36px" } }).form; //创建窗体
  6192. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6193. break;
  6194. case "snf":
  6195. _formdiv = new U.UF.UI.form(
  6196. "赛诺梵",
  6197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6198. "id": "snf",
  6199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6205. break;
  6206. case "hanFamily":
  6207. _formdiv = new U.UF.UI.form(
  6208. "汉字家族",
  6209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6210. "id": "hanFamily",
  6211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6217. break;
  6218. case "hanClassics":
  6219. _formdiv = new U.UF.UI.form(
  6220. "国学经典",
  6221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6222. "id": "hanClassics",
  6223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6229. break;
  6230. case "hanTraining":
  6231. _formdiv = new U.UF.UI.form(
  6232. "笔画训练",
  6233. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6234. "id": "hanTraining",
  6235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6241. break;
  6242. case "hanClass":
  6243. _formdiv = new U.UF.UI.form(
  6244. "书法课堂",
  6245. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6246. "id": "hanClass",
  6247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6253. break;
  6254. case "han":
  6255. _formdiv = new U.UF.UI.form(
  6256. "汉字宫",
  6257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6258. "id": "han",
  6259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () { }
  6263. }, { "style": { "height": "36px" } }).form; //创建窗体
  6264. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6265. break;
  6266. case "projectGM": //课程管理
  6267. _formdiv = new U.UF.UI.form(
  6268. "课程管理",
  6269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6270. "id": "projectGM",
  6271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //创建窗体
  6276. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6277. break;
  6278. case "studyGM": //课程中心
  6279. _formdiv = new U.UF.UI.form(
  6280. "课程中心",
  6281. $$("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
  6282. "id": "study",
  6283. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //创建窗体
  6288. _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); } }
  6289. break;
  6290. // studentGM
  6291. case "studentGM": //学生管理
  6292. _formdiv = new U.UF.UI.form(
  6293. "学生管理",
  6294. $$("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 }), {
  6295. "id": "studentGM",
  6296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. _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); } }
  6302. break;
  6303. case "evaluateGM": //学生评价
  6304. _formdiv = new U.UF.UI.form(
  6305. "学生评价",
  6306. $$("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 }), {
  6307. "id": "evaluateGM",
  6308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _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); } }
  6314. break;
  6315. // classGM
  6316. case "classGM": //班级管理
  6317. _formdiv = new U.UF.UI.form(
  6318. "班级管理",
  6319. $$("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 }), {
  6320. "id": "classGM",
  6321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. break;
  6328. // dataGM
  6329. case "dataGM":
  6330. _formdiv = new U.UF.UI.form(
  6331. "我的资料",
  6332. $$("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 }), {
  6333. "id": "dataGM",
  6334. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6335. "onresize": function () { }
  6336. }, {
  6337. closecallback: function () { }
  6338. }, { "style": { "height": "36px" } }).form; //创建窗体
  6339. _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); } }
  6340. break;
  6341. // caseGM
  6342. case "caseGM": //课程进展
  6343. _formdiv = new U.UF.UI.form(
  6344. "课程进展",
  6345. $$("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 }), {
  6346. "id": "caseGM",
  6347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //创建窗体
  6352. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6353. break;
  6354. // meterialGM
  6355. case "meterialGM": //素材库
  6356. _formdiv = new U.UF.UI.form(
  6357. "素材库",
  6358. $$("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 }), {
  6359. "id": "meterialGM",
  6360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. // evaluateSGM
  6368. case "evaluateSGM": //我的评价
  6369. _formdiv = new U.UF.UI.form(
  6370. "我的评价",
  6371. $$("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 }), {
  6372. "id": "evaluateSGM",
  6373. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6374. "onresize": function () { }
  6375. }, {
  6376. closecallback: function () { }
  6377. }, { "style": { "height": "36px" } }).form; //创建窗体
  6378. _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); } }
  6379. break;
  6380. case "jupyter": //jupyter
  6381. _formdiv = new U.UF.UI.form(
  6382. "jupyter",
  6383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6384. "id": "jupyter",
  6385. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6386. "onresize": function () { }
  6387. }, {
  6388. closecallback: function () { }
  6389. }, { "style": { "height": "36px" } }).form; //创建窗体
  6390. _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); } }
  6391. break;
  6392. case "number": //数字实验室
  6393. _formdiv = new U.UF.UI.form(
  6394. "数字实验室",
  6395. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6396. "id": "number",
  6397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6398. "onresize": function () { }
  6399. }, {
  6400. closecallback: function () { }
  6401. }, { "style": { "height": "36px" } }).form; //创建窗体
  6402. _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); } }
  6403. break;
  6404. case "studentCourse": //项目管理 学生
  6405. _formdiv = new U.UF.UI.form(
  6406. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6407. $$("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 }), {
  6408. "id": "studentCourse",
  6409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6410. "onresize": function () { }
  6411. }, {
  6412. closecallback: function () { }
  6413. }, { "style": { "height": "36px" } }).form; //创建窗体
  6414. _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); } }
  6415. break;
  6416. case "studentCourseS": //项目管理 老师
  6417. _formdiv = new U.UF.UI.form(
  6418. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6419. $$("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 }), {
  6420. "id": "studentCourseS",
  6421. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6422. "onresize": function () { }
  6423. }, {
  6424. closecallback: function () { }
  6425. }, { "style": { "height": "36px" } }).form; //创建窗体
  6426. _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); } }
  6427. break;
  6428. case "studentIndex": //项目中心
  6429. _formdiv = new U.UF.UI.form(
  6430. "项目中心",
  6431. $$("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 }), {
  6432. "id": "studentIndex",
  6433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6434. "onresize": function () { }
  6435. }, {
  6436. closecallback: function () { }
  6437. }, { "style": { "height": "36px" } }).form; //创建窗体
  6438. _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); } }
  6439. break;
  6440. case "CaseDesignS":
  6441. _formdiv = new U.UF.UI.form(
  6442. "项目进展",
  6443. $$("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 }), {
  6444. "id": "case",
  6445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, { "style": { "height": "36px" } }).form; //创建窗体
  6450. _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); } }
  6451. break;
  6452. case "tcStudent": //腾讯学生管理
  6453. _formdiv = new U.UF.UI.form(
  6454. "学生管理",
  6455. $$("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 }), {
  6456. "id": "tcStudent",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. _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); } }
  6463. break;
  6464. case "tcSchool": //腾讯学校管理
  6465. _formdiv = new U.UF.UI.form(
  6466. "学校管理",
  6467. $$("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 }), {
  6468. "id": "tcSchool",
  6469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6470. "onresize": function () { }
  6471. }, {
  6472. closecallback: function () { }
  6473. }, { "style": { "height": "36px" } }).form; //创建窗体
  6474. _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); } }
  6475. break;
  6476. case "tcTeacher": //腾讯学校管理
  6477. _formdiv = new U.UF.UI.form(
  6478. "教师管理",
  6479. $$("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 }), {
  6480. "id": "tcTeacher",
  6481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6482. "onresize": function () { }
  6483. }, {
  6484. closecallback: function () { }
  6485. }, { "style": { "height": "36px" } }).form; //创建窗体
  6486. _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); } }
  6487. break;
  6488. case "teacher":
  6489. _formdiv = new U.UF.UI.form(
  6490. "教师管理",
  6491. $$("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 }), {
  6492. "id": "teacher",
  6493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, { "style": { "height": "36px" } }).form; //创建窗体
  6498. _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); } }
  6499. break;
  6500. case "tcData": //腾讯我的资料
  6501. _formdiv = new U.UF.UI.form(
  6502. "我的资料",
  6503. $$("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 }), {
  6504. "id": "tcData",
  6505. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6506. "onresize": function () { }
  6507. }, {
  6508. closecallback: function () { }
  6509. }, { "style": { "height": "36px" } }).form; //创建窗体
  6510. _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); } }
  6511. break;
  6512. case "tcNotice": //腾讯消息通知
  6513. _formdiv = new U.UF.UI.form(
  6514. "消息通知",
  6515. $$("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 }), {
  6516. "id": "tcNotice",
  6517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6518. "onresize": function () { }
  6519. }, {
  6520. closecallback: function () { }
  6521. }, { "style": { "height": "36px" } }).form; //创建窗体
  6522. _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); } }
  6523. break;
  6524. case "myReport": //好友打开
  6525. _formdiv = new U.UF.UI.form(
  6526. "我的评价",
  6527. $$("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 }), {
  6528. "id": "myReport",
  6529. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, { "style": { "height": "36px" } }).form; //创建窗体
  6534. _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); } }
  6535. break;
  6536. case "learnAna": //好友打开
  6537. _formdiv = new U.UF.UI.form(
  6538. "学习分析",
  6539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/learnAna?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6540. "id": "learnAna",
  6541. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6542. "onresize": function () { }
  6543. }, {
  6544. closecallback: function () { }
  6545. }, { "style": { "height": "36px" } }).form; //创建窗体
  6546. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6547. break;
  6548. case "AIChat": //AI共创
  6549. _formdiv = new U.UF.UI.form(
  6550. "AI共创",
  6551. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6552. "id": "AIChat",
  6553. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. istop: true,
  6557. closecallback: function () { $("#aichat_icon").remove(); },
  6558. narrowcallback: function () {
  6559. if (!$("#aichat_icon")[0]) {
  6560. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6561. }
  6562. },
  6563. }, { "style": { "height": "36px" } }).form; //创建窗体
  6564. _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); } }
  6565. break;
  6566. case "ainew": //AI共创
  6567. _formdiv = new U.UF.UI.form(
  6568. "AI协同",
  6569. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6570. "id": "ainew",
  6571. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6572. "onresize": function () { }
  6573. }, {
  6574. closecallback: function () { }
  6575. }, { "style": { "height": "36px" } }).form; //创建窗体
  6576. _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); } }
  6577. break;
  6578. case "gpt4": //gpt4
  6579. _formdiv = new U.UF.UI.form(
  6580. "AI助手",
  6581. $$("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 }), {
  6582. "id": "gpt4",
  6583. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6584. "onresize": function () { }
  6585. }, {
  6586. closecallback: function () { }
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _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); } }
  6589. break;
  6590. case "aigpt": //gpt4
  6591. _formdiv = new U.UF.UI.form(
  6592. "AI助手+",
  6593. $$("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 }), {
  6594. "id": "aigpt",
  6595. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () {
  6599. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6600. }
  6601. }, { "style": { "height": "36px" } }).form; //创建窗体
  6602. _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); } }
  6603. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6604. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6605. })
  6606. break;
  6607. case "aiKnowledge": //aiKnowledge
  6608. _formdiv = new U.UF.UI.form(
  6609. "知识建构",
  6610. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6611. "id": "aiKnowledge",
  6612. "style": { "width": "100%", "height": "100%", "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/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6618. break;
  6619. case "futureClass": //AI共创
  6620. _formdiv = new U.UF.UI.form(
  6621. "协同建构",
  6622. $$("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
  6623. "id": "synergyCourse",
  6624. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6625. "onresize": function () { }
  6626. }, {
  6627. closecallback: function () {
  6628. $("iframe", _formdiv)[0].contentWindow.loginout();
  6629. }
  6630. }, { "style": { "height": "36px" } }).form; //创建窗体
  6631. _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); } }
  6632. break;
  6633. case "aiagent": //ai agent
  6634. _formdiv = new U.UF.UI.form(
  6635. "AI Agent",
  6636. $$("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" }), {
  6637. "id": "AIAgent",
  6638. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () { }
  6642. }, { "style": { "height": "36px" } }).form; //创建窗体
  6643. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6644. break;
  6645. case "dataBoard": //数据看板
  6646. _formdiv = new U.UF.UI.form(
  6647. "数据看板",
  6648. $$("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 }), {
  6649. "id": "dataBoard",
  6650. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6651. "onresize": function () { }
  6652. }, {
  6653. closecallback: function () { }
  6654. }, { "style": { "height": "36px" } }).form; //创建窗体
  6655. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6656. break;
  6657. case "dataBoardSies": //数据融合
  6658. _formdiv = new U.UF.UI.form(
  6659. "数据融合",
  6660. $$("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 }), {
  6661. "id": "dataBoardSies",
  6662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6668. break;
  6669. case "dataBoardNew": //数据看板
  6670. _formdiv = new U.UF.UI.form(
  6671. "综合看板",
  6672. $$("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 }), {
  6673. "id": "dataBoardNew",
  6674. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6675. "onresize": function () { }
  6676. }, {
  6677. closecallback: function () { }
  6678. }, { "style": { "height": "36px" } }).form; //创建窗体
  6679. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6680. break;
  6681. case "dataBoardTest": //数据看板
  6682. _formdiv = new U.UF.UI.form(
  6683. "评测看板",
  6684. $$("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 }), {
  6685. "id": "dataBoardTest",
  6686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6687. "onresize": function () { }
  6688. }, {
  6689. closecallback: function () { }
  6690. }, { "style": { "height": "36px" } }).form; //创建窗体
  6691. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6692. break;
  6693. case "AIAnalyse": //AI共创
  6694. _formdiv = new U.UF.UI.form(
  6695. "AI分析",
  6696. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6697. "id": "AIAnalyse",
  6698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6699. "onresize": function () { }
  6700. }, {
  6701. closecallback: function () { }
  6702. }, { "style": { "height": "36px" } }).form; //创建窗体
  6703. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6704. break;
  6705. case "studioCourse": //AI共创
  6706. _formdiv = new U.UF.UI.form(
  6707. "工作管理",
  6708. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6709. "id": "studioCourse",
  6710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6711. "onresize": function () { }
  6712. }, {
  6713. closecallback: function () { }
  6714. }, { "style": { "height": "36px" } }).form; //创建窗体
  6715. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6716. break;
  6717. case "studioIndex": //AI共创
  6718. _formdiv = new U.UF.UI.form(
  6719. "工作中心",
  6720. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6721. "id": "studioIndex",
  6722. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6723. "onresize": function () { }
  6724. }, {
  6725. closecallback: function () { }
  6726. }, { "style": { "height": "36px" } }).form; //创建窗体
  6727. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6728. break;
  6729. case "source":
  6730. _formdiv = new U.UF.UI.form(
  6731. "教学资源",
  6732. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6733. "id": "source",
  6734. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6735. "onresize": function () { }
  6736. }, {
  6737. closecallback: function () { }
  6738. }, { "style": { "height": "36px" } }).form; //创建窗体
  6739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6740. break;
  6741. case "testTeacher":
  6742. _formdiv = new U.UF.UI.form(
  6743. "教师管理",
  6744. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6745. "id": "testTeacher",
  6746. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6747. "onresize": function () { }
  6748. }, {
  6749. closecallback: function () { }
  6750. }, { "style": { "height": "36px" } }).form; //创建窗体
  6751. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6752. break;
  6753. case "testStudent":
  6754. _formdiv = new U.UF.UI.form(
  6755. "教师中心",
  6756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6757. "id": "testStudent",
  6758. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //创建窗体
  6763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6764. break;
  6765. case "testTeacherSies":
  6766. _formdiv = new U.UF.UI.form(
  6767. "教师管理",
  6768. $$("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 }), {
  6769. "id": "testTeacherSies",
  6770. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6771. "onresize": function () { }
  6772. }, {
  6773. closecallback: function () { }
  6774. }, { "style": { "height": "36px" } }).form; //创建窗体
  6775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6776. break;
  6777. case "testStudentSies":
  6778. _formdiv = new U.UF.UI.form(
  6779. "教师中心",
  6780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6781. "id": "testStudentSies",
  6782. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6783. "onresize": function () { }
  6784. }, {
  6785. closecallback: function () { }
  6786. }, { "style": { "height": "36px" } }).form; //创建窗体
  6787. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6788. break;
  6789. case "ytpbl": //消息通知
  6790. _formdiv = new U.UF.UI.form(
  6791. "案例征集",
  6792. $$("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 }), {
  6793. "id": "ytpbl",
  6794. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6795. "onresize": function () { }
  6796. }, {
  6797. closecallback: function () { }
  6798. }, { "style": { "height": "36px" } }).form; //创建窗体
  6799. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6800. // 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");
  6801. break;
  6802. case "aiCourseResource": //人工智能窗体
  6803. _formdiv = new U.UF.UI.form(
  6804. false,
  6805. $$("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 }), {
  6806. "id": "aiCourseResource",
  6807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6808. "onresize": function () { },
  6809. "isdrag": false,
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _taskbar = ''
  6814. break;
  6815. case "szdjgCocooroboX": //图形化编程
  6816. _formdiv = new U.UF.UI.form(
  6817. "图形化编程",
  6818. $$("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" }), {
  6819. "id": "szdjgCocooroboX",
  6820. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _taskbar = ''
  6826. break;
  6827. case "szdjgPython": //python编程
  6828. _formdiv = new U.UF.UI.form(
  6829. "Python编程",
  6830. $$("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" }), {
  6831. "id": "szdjgPython",
  6832. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _taskbar = ''
  6838. break;
  6839. case "Record":
  6840. _formdiv = new U.UF.UI.form(
  6841. "观察记录",
  6842. $$("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 }), {
  6843. "id": "Record",
  6844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _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); } }
  6850. break;
  6851. case "aigptCourse":
  6852. _formdiv = new U.UF.UI.form(
  6853. "AI智能体",
  6854. $$("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' }), {
  6855. "id": "aigptCourse",
  6856. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _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); } }
  6862. break;
  6863. case "classroomObservation":
  6864. _formdiv = new U.UF.UI.form(
  6865. "课堂观察",
  6866. $$("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 }), {
  6867. "id": "classroomObservation",
  6868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _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); } }
  6874. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6875. break;
  6876. case "pblCourse":
  6877. _formdiv = new U.UF.UI.form(
  6878. "学生PBL",
  6879. $$("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 }), {
  6880. "id": "pblCourse",
  6881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6882. "onresize": function () { }
  6883. }, {
  6884. closecallback: function () { }
  6885. }, { "style": { "height": "36px" } }).form; //创建窗体
  6886. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6887. break;
  6888. }
  6889. //U.MD.D.I.openClick(str);
  6890. //如果有任务栏信息
  6891. if (_taskbar) {
  6892. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6893. }
  6894. }
  6895. // U.MD.D.I.openClick = function(str){
  6896. // var click = '';
  6897. // switch(str){
  6898. // case 'friend':
  6899. // click = '我的好友';
  6900. // break;
  6901. // case 'domain':
  6902. // click = '域名管理';
  6903. // break;
  6904. // case 'disk':
  6905. // click = '我的云盘';
  6906. // break;
  6907. // case 'word':
  6908. // click = 'Word';
  6909. // break;
  6910. // case 'excel':
  6911. // click = 'Execl';
  6912. // break;
  6913. // case 'txt':
  6914. // click = '文本文件';
  6915. // break;
  6916. // case 'lookupFriend':
  6917. // click = '查找好友';
  6918. // break;
  6919. // case 'ftp':
  6920. // click = 'FTP';
  6921. // break;
  6922. // case 'group':
  6923. // click = '群组';
  6924. // break;
  6925. // case 'set':
  6926. // click = '我的设置';
  6927. // break;
  6928. // case 'systemSet':
  6929. // click = '系统设置';
  6930. // break;
  6931. // case 'boomYun':
  6932. // click = '互联办公';
  6933. // break;
  6934. // case 'xz':
  6935. // click = '云端下载';
  6936. // break;
  6937. // case 'client':
  6938. // click = '有思浏览器';
  6939. // break;
  6940. // case 'backEndProgramming':
  6941. // click = '在线后台编程';
  6942. // break;
  6943. // case 'frontEndProgramming':
  6944. // click = '在线前端编程';
  6945. // break;
  6946. // default: break;
  6947. // }
  6948. // if(U.MD.D.I.Ip && click){
  6949. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6950. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6951. // })
  6952. // }
  6953. // }
  6954. /**
  6955. *函数作用:ajax简易函数,使用post格式
  6956. *@param url {data} 后台地址
  6957. *@param data {data} 参数json
  6958. *@param fn {data} 回调函数
  6959. *
  6960. */
  6961. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6962. // var xhr = new XMLHttpRequest();
  6963. // xhr.open("GET",url,true);
  6964. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6965. // xhr.onreadystatechange = function(){
  6966. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6967. // fn.call(this,xhr.responseText);
  6968. // }
  6969. // };
  6970. // xhr.send();
  6971. // }
  6972. /*判断是否是内网IP*/
  6973. // U.MD.D.I.isInnerIPFn = function(str){
  6974. // var curPageUrl = str;
  6975. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6976. // curPageUrl =curPageUrl.replace(reg1,'');
  6977. // // console.log('curPageUrl-1 '+curPageUrl);
  6978. // var reg2 = /\:+/g;//替换冒号为一点
  6979. // curPageUrl =curPageUrl.replace(reg2,'.');
  6980. // // console.log('curPageUrl-2 '+curPageUrl);
  6981. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6982. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6983. // if(curPageUrl[2] != '16'){
  6984. // return ipAddress;
  6985. // }else{
  6986. // return false;
  6987. // }
  6988. // }
  6989. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6990. // //compatibility for firefox and chrome
  6991. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6992. // var pc = new myPeerConnection({
  6993. // iceServers: []
  6994. // }),
  6995. // noop = function() {},
  6996. // localIPs = {},
  6997. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6998. // key;
  6999. // function iterateIP(ip) {
  7000. // if (!localIPs[ip]) onNewIP(ip);
  7001. // localIPs[ip] = true;
  7002. // }
  7003. // //create a bogus data channel
  7004. // pc.createDataChannel("");
  7005. // // create offer and set local description
  7006. // pc.createOffer().then(function(sdp) {
  7007. // sdp.sdp.split('\n').forEach(function(line) {
  7008. // if (line.indexOf('candidate') < 0) return;
  7009. // line.match(ipRegex).forEach(iterateIP);
  7010. // });
  7011. // pc.setLocalDescription(sdp, noop, noop);
  7012. // }).catch(function(reason) {
  7013. // // An error occurred, so handle the failure to connect
  7014. // });
  7015. // //sten for candidate events
  7016. // pc.onicecandidate = function(ice) {
  7017. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7018. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7019. // };
  7020. // }
  7021. // U.MD.D.I.getUserIpBool = function(callback){
  7022. // U.MD.D.I.getUserIP(function(ip){
  7023. // alert("Got IP! :" + ip);
  7024. // });
  7025. //}
  7026. //#endregion
  7027. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7028. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7029. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7030. _userinfo = US.userInfo, //登录用户信息
  7031. _userid = US.userInfo.userid //登录用户id
  7032. let _iframe;
  7033. let _cid = cid,
  7034. _stage = stage,
  7035. _task = task,
  7036. _tool = tool;
  7037. var _jie = $$("div", {
  7038. "style": {
  7039. "position": "absolute",
  7040. "bottom": "50px",
  7041. "right": "50px",
  7042. "zIndex": "9999",
  7043. "backgroundColor": "#2268bc",
  7044. "color": "#fff",
  7045. "padding": "12px 20px",
  7046. "cursor": "pointer",
  7047. "borderRadius": "4px",
  7048. },
  7049. "innerHTML": "提交作业"
  7050. })
  7051. let aTool = ''
  7052. let _loading = document.createElement('div')
  7053. _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;"
  7054. // _loading.id = "";
  7055. let _lchild = document.createElement('div')
  7056. let _limg = document.createElement('img')
  7057. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7058. _limg.style = "width: 26px;margin-right: 10px;"
  7059. _lchild.appendChild(_limg)
  7060. let _lspan = document.createElement('span')
  7061. _lspan.innerHTML = "上传中..."
  7062. _lchild.appendChild(_lspan)
  7063. _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%);"
  7064. _loading.appendChild(_lchild)
  7065. var _box = $$('div', {
  7066. "style": {
  7067. "position": "relative",
  7068. "width": "100%",
  7069. "height": "100%",
  7070. },
  7071. })
  7072. _box.appendChild(_loading)
  7073. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7074. switch (str) {
  7075. case "whiteboard":
  7076. aTool = 1;
  7077. _iframe = $$("iframe", {
  7078. "frameborder": "no",
  7079. "border": "0",
  7080. "scrolling ": "no",
  7081. "style": {
  7082. "cssText": "border:0;width:100%;height:100%"
  7083. },
  7084. "src": "https://beta.iwb.cocorobo.cn/"
  7085. })
  7086. _box.appendChild(_iframe);
  7087. _box.appendChild(_jie);
  7088. _formdiv = new U.UF.UI.form(
  7089. "电子白板",
  7090. _box, {
  7091. "id": "whiteboard" + cid + stage + task + tool,
  7092. "style": {
  7093. "width": "90%",
  7094. "height": "90%",
  7095. "overflow": 'hidden'
  7096. },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, {
  7101. "style": {
  7102. "height": "36px"
  7103. }
  7104. }).form; //创建窗体
  7105. _taskbar = {
  7106. "id": str + _formdiv.id,
  7107. "style": {
  7108. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7109. },
  7110. "name": "电子白板",
  7111. "forms": _formdiv,
  7112. "click": function () {
  7113. U.MD.D.I.openApplication(str, obj, info);
  7114. }
  7115. }
  7116. break;
  7117. case "mind":
  7118. aTool = 3;
  7119. _iframe = $$("iframe", {
  7120. "frameborder": "no",
  7121. "border": "0",
  7122. "scrolling ": "no",
  7123. "style": {
  7124. "cssText": "border:0;width:100%;height:100%"
  7125. },
  7126. "src": "/kityminder-editor/dist/index.html"
  7127. })
  7128. _box.appendChild(_iframe);
  7129. _box.appendChild(_jie);
  7130. _formdiv = new U.UF.UI.form(
  7131. "思维导图",
  7132. _box, { //"/jsmind/example/demo.html"
  7133. "id": "mind" + cid + stage + task + tool,
  7134. "style": {
  7135. "width": "90%",
  7136. "height": "90%",
  7137. "overflow": 'hidden'
  7138. },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, {
  7143. "style": {
  7144. "height": "36px"
  7145. }
  7146. }).form; //创建窗体
  7147. _taskbar = {
  7148. "id": str + _formdiv.id,
  7149. "style": {
  7150. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7151. },
  7152. "name": "思维导图",
  7153. "forms": _formdiv,
  7154. "click": function () {
  7155. U.MD.D.I.openApplication(str, obj, info);
  7156. }
  7157. }
  7158. break;
  7159. case "MindMap":
  7160. aTool = 3;
  7161. _iframe = $$("iframe", {
  7162. "frameborder": "no",
  7163. "border": "0",
  7164. "scrolling ": "no",
  7165. "style": {
  7166. "cssText": "border:0;width:100%;height:100%"
  7167. },
  7168. "src": "//cloud.cocorobo.cn/mind/"
  7169. })
  7170. _box.appendChild(_iframe);
  7171. _box.appendChild(_jie);
  7172. _formdiv = new U.UF.UI.form(
  7173. "思维导图",
  7174. _box, { //"/jsmind/example/demo.html"
  7175. "id": "mind" + cid + stage + task + tool,
  7176. "style": {
  7177. "width": "90%",
  7178. "height": "90%",
  7179. "overflow": 'hidden'
  7180. },
  7181. "onresize": function () { }
  7182. }, {
  7183. closecallback: function () { }
  7184. }, {
  7185. "style": {
  7186. "height": "36px"
  7187. }
  7188. }).form; //创建窗体
  7189. _taskbar = {
  7190. "id": str + _formdiv.id,
  7191. "style": {
  7192. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7193. },
  7194. "name": "思维导图",
  7195. "forms": _formdiv,
  7196. "click": function () {
  7197. U.MD.D.I.openApplication(str, obj, info);
  7198. }
  7199. }
  7200. break;
  7201. case "doc":
  7202. aTool = 6;
  7203. _iframe = $$("iframe", {
  7204. "frameborder": "no",
  7205. "border": "0",
  7206. "scrolling ": "no",
  7207. "style": {
  7208. "cssText": "border:0;width:100%;height:100%"
  7209. },
  7210. "src": "/Office/Word/WordEditArea.htm"
  7211. })
  7212. _box.appendChild(_iframe);
  7213. _box.appendChild(_jie);
  7214. _formdiv = new U.UF.UI.form(
  7215. "协同文档",
  7216. _box, {
  7217. "id": "doc" + cid + stage + task + tool,
  7218. "style": {
  7219. "width": "90%",
  7220. "height": "90%",
  7221. "overflow": 'hidden'
  7222. },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, {
  7227. "style": {
  7228. "height": "36px"
  7229. }
  7230. }).form; //创建窗体
  7231. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7232. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7233. })
  7234. _taskbar = {
  7235. "id": str + _formdiv.id,
  7236. "style": {
  7237. "backgroundImage": "url(/img/icon/doc.png)"
  7238. },
  7239. "name": "协同文档",
  7240. "forms": _formdiv,
  7241. "click": function () {
  7242. U.MD.D.I.openApplication(str, obj, info);
  7243. }
  7244. }
  7245. break;
  7246. case "mindNetwork": //好友打开
  7247. aTool = 7;
  7248. _iframe = $$("iframe", {
  7249. "webkitallowfullscreen": "",
  7250. "mozallowfullscreen": "",
  7251. "allowfullscreen": "",
  7252. "frameborder": "no",
  7253. "border": "0",
  7254. "scrolling ": "no",
  7255. "style": {
  7256. "cssText": "border:0; width:100%; height:100%;"
  7257. },
  7258. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7259. })
  7260. _box.appendChild(_iframe);
  7261. _box.appendChild(_jie);
  7262. _formdiv = new U.UF.UI.form(
  7263. "思维网格",
  7264. _box, {
  7265. "id": "mindNetwork" + cid + stage + task + tool,
  7266. "style": {
  7267. "width": "90%",
  7268. "height": "90%",
  7269. "overflow": 'hidden'
  7270. },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, {
  7275. "style": {
  7276. "height": "36px"
  7277. }
  7278. }).form; //创建窗体
  7279. _taskbar = {
  7280. "id": str + _formdiv.id,
  7281. "style": {
  7282. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7283. },
  7284. "name": "思维网格",
  7285. "forms": _formdiv,
  7286. "click": function () {
  7287. U.MD.D.I.openApplication(str, obj, info);
  7288. }
  7289. }
  7290. break;
  7291. case "courseDesign":
  7292. _iframe = $$("iframe", {
  7293. "webkitallowfullscreen": "",
  7294. "mozallowfullscreen": "",
  7295. "allowfullscreen": "",
  7296. "frameborder": "no",
  7297. "border": "0",
  7298. "scrolling ": "no",
  7299. "style": {
  7300. "cssText": "border:0; width:100%; height:100%;"
  7301. },
  7302. "src": "/course-design-vue"
  7303. })
  7304. _box.appendChild(_iframe);
  7305. _box.appendChild(_jie);
  7306. _formdiv = new U.UF.UI.form(
  7307. "项目设计",
  7308. _box, {
  7309. "id": "courseDesign" + cid + stage + task + tool,
  7310. "style": {
  7311. "width": "90%",
  7312. "height": "90%",
  7313. "overflow": 'hidden'
  7314. },
  7315. "onresize": function () { }
  7316. }, {
  7317. closecallback: function () { }
  7318. }, {
  7319. "style": {
  7320. "height": "36px"
  7321. }
  7322. }).form; //创建窗体
  7323. _taskbar = {
  7324. "id": str + _formdiv.id,
  7325. "style": {
  7326. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7327. },
  7328. "name": "项目设计",
  7329. "forms": _formdiv,
  7330. "click": function () {
  7331. U.MD.D.I.openApplication(str, obj, info);
  7332. }
  7333. }
  7334. break;
  7335. }
  7336. const script1 = document.createElement("script");
  7337. script1.type = "text/javascript";
  7338. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7339. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7340. const script2 = document.createElement("script");
  7341. script2.type = "text/javascript";
  7342. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7343. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7344. const script3 = document.createElement("script");
  7345. script3.type = "text/javascript";
  7346. script3.charset = "UTF-8";
  7347. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7348. const script4 = document.createElement("script");
  7349. script4.type = "text/javascript";
  7350. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7351. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7352. if (_iframe) {
  7353. if (str == 'doc') {
  7354. _iframe = _formdiv.querySelector('iframe')
  7355. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7356. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7357. _iframe.contentWindow.document.body.appendChild(script1);
  7358. _iframe.contentWindow.document.body.appendChild(script2);
  7359. // _iframe.contentWindow.document.body.appendChild(script3);
  7360. _iframe.contentWindow.document.body.appendChild(script4);
  7361. })
  7362. if (onloadListener) {
  7363. _iframe.contentDocument.location.reload()
  7364. } else {
  7365. _iframe.contentDocument.location.reload()
  7366. }
  7367. } else if (str == 'courseDesign') {
  7368. U.UF.DL.iframeLoad(_iframe, function () {
  7369. // _iframe.contentWindow.U.MD.O.W.load();
  7370. // _iframe.contentWindow.document.body.appendChild(script1);
  7371. _iframe.contentWindow.document.body.appendChild(script2);
  7372. _iframe.contentWindow.document.body.appendChild(script4);
  7373. })
  7374. } else if (str == 'mind') {
  7375. _iframe = _formdiv.querySelector('iframe')
  7376. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7377. //
  7378. _iframe.contentWindow.document.body.appendChild(script1);
  7379. _iframe.contentWindow.document.body.appendChild(script2);
  7380. _iframe.contentWindow.document.body.appendChild(script4);
  7381. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7382. })
  7383. if (onloadListener) {
  7384. _iframe.contentDocument.location.reload()
  7385. } else {
  7386. _iframe.contentDocument.location.reload()
  7387. }
  7388. } else if (str == 'whiteboard') {
  7389. _iframe = _formdiv.querySelector('iframe')
  7390. let onloadListener = _iframe.onload = () => {
  7391. _iframe.contentWindow.document.body.appendChild(script1);
  7392. _iframe.contentWindow.document.body.appendChild(script2);
  7393. _iframe.contentWindow.document.body.appendChild(script4);
  7394. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7395. };
  7396. // if (onloadListener) {
  7397. // try {
  7398. // _iframe.src += "?cocorobo="+new Date().getTime()
  7399. // _iframe.contentWindow.document.location.reload()
  7400. // } catch (error) {
  7401. // }
  7402. // } else {
  7403. // _iframe.contentDocument.location.reload()
  7404. // }
  7405. } else {
  7406. _iframe.onload = () => {
  7407. _iframe.contentWindow.document.body.appendChild(script1);
  7408. _iframe.contentWindow.document.body.appendChild(script2);
  7409. // _iframe.contentWindow.document.body.appendChild(script3);
  7410. _iframe.contentWindow.document.body.appendChild(script4);
  7411. };
  7412. }
  7413. _jie.onclick = async () => {
  7414. let text = ''
  7415. if (aTool == 1) {
  7416. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7417. } else if (aTool == 6) {
  7418. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7419. } else if (aTool == 3) {
  7420. text = await U.MD.D.I.getEditorContent(_iframe);
  7421. }
  7422. _loading.style.display = 'flex'
  7423. console.log(_loading);
  7424. var _ajs = _iframe.contentWindow.document.createElement("script");
  7425. _ajs.type = "text/javascript";
  7426. _ajs.innerHTML =
  7427. // 'console.log(' + _loading + ');\n' +
  7428. 'var _js = document.createElement("script");\n' +
  7429. '_js.type="text/javascript";\n' +
  7430. '_js.charset="UTF-8";\n' +
  7431. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7432. "_js.onload = function(){\n" +
  7433. ' var a = document.getElementsByTagName("img")\n' +
  7434. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7435. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7436. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7437. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7438. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7439. "beforeUpload_shishi(file," +
  7440. "'" +
  7441. _userid +
  7442. "'" +
  7443. ", " +
  7444. "'" +
  7445. _cid +
  7446. "'" +
  7447. ", " +
  7448. "'" +
  7449. _stage +
  7450. "'" +
  7451. ", " +
  7452. "'" +
  7453. _task +
  7454. "'" +
  7455. ", " +
  7456. "'" +
  7457. _tool +
  7458. "'" +
  7459. ", " +
  7460. "'" +
  7461. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7462. "'" +
  7463. ", " +
  7464. "'" +
  7465. aTool +
  7466. "'" +
  7467. ", " +
  7468. "`" +
  7469. text +
  7470. "`" +
  7471. ")\n" +
  7472. " });\n" +
  7473. "}\n" +
  7474. "document.head.appendChild(_js);\n";
  7475. _iframe.contentWindow.document.head.appendChild(_ajs);
  7476. }
  7477. }
  7478. //U.MD.D.I.openClick(str);
  7479. //如果有任务栏信息
  7480. // if (_taskbar) {
  7481. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7482. // }
  7483. }
  7484. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7485. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7486. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7487. _userinfo = US.userInfo, //登录用户信息
  7488. _userid = US.userInfo.userid //登录用户id
  7489. let _iframe;
  7490. let _cid = cid,
  7491. _stage = stage,
  7492. _task = task,
  7493. _tool = tool;
  7494. var _jie = $$("div", {
  7495. "style": {
  7496. "position": "absolute",
  7497. "bottom": "50px",
  7498. "right": "50px",
  7499. "zIndex": "9999",
  7500. "backgroundColor": "#2268bc",
  7501. "color": "#fff",
  7502. "padding": "12px 20px",
  7503. "cursor": "pointer",
  7504. "borderRadius": "4px",
  7505. },
  7506. "innerHTML": "提交作业"
  7507. })
  7508. let aTool = ''
  7509. let _loading = document.createElement('div')
  7510. _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;"
  7511. // _loading.id = "";
  7512. let _lchild = document.createElement('div')
  7513. let _limg = document.createElement('img')
  7514. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7515. _limg.style = "width: 26px;margin-right: 10px;"
  7516. _lchild.appendChild(_limg)
  7517. let _lspan = document.createElement('span')
  7518. _lspan.innerHTML = "上传中..."
  7519. _lchild.appendChild(_lspan)
  7520. _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%);"
  7521. _loading.appendChild(_lchild)
  7522. let _box = $$('div', {
  7523. "style": {
  7524. "position": "relative",
  7525. "width": "100%",
  7526. "height": "100%",
  7527. },
  7528. })
  7529. _box.appendChild(_loading)
  7530. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7531. switch (str) {
  7532. case "whiteboard":
  7533. aTool = 1;
  7534. _iframe = $$("iframe", {
  7535. "frameborder": "no",
  7536. "border": "0",
  7537. "scrolling ": "no",
  7538. "style": {
  7539. "cssText": "border:0;width:100%;height:100%"
  7540. },
  7541. "src": "https://beta.iwb.cocorobo.cn/"
  7542. })
  7543. _box.appendChild(_iframe);
  7544. _box.appendChild(_jie);
  7545. _formdiv = new U.UF.UI.form(
  7546. "电子白板",
  7547. _box, {
  7548. "id": "whiteboard" + cid + stage + task + tool,
  7549. "style": {
  7550. "width": "90%",
  7551. "height": "90%",
  7552. "overflow": 'hidden'
  7553. },
  7554. "onresize": function () { }
  7555. }, {
  7556. closecallback: function () { }
  7557. }, {
  7558. "style": {
  7559. "height": "36px"
  7560. }
  7561. }).form; //创建窗体
  7562. _taskbar = {
  7563. "id": str + _formdiv.id,
  7564. "style": {
  7565. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7566. },
  7567. "name": "电子白板",
  7568. "forms": _formdiv,
  7569. "click": function () {
  7570. U.MD.D.I.openApplication(str, obj, info);
  7571. }
  7572. }
  7573. break;
  7574. case "mind":
  7575. aTool = 3;
  7576. _iframe = $$("iframe", {
  7577. "frameborder": "no",
  7578. "border": "0",
  7579. "scrolling ": "no",
  7580. "style": {
  7581. "cssText": "border:0;width:100%;height:100%"
  7582. },
  7583. "src": "/kityminder-editor/dist/index.html"
  7584. })
  7585. _box.appendChild(_iframe);
  7586. _box.appendChild(_jie);
  7587. _formdiv = new U.UF.UI.form(
  7588. "思维导图",
  7589. _box, { //"/jsmind/example/demo.html"
  7590. "id": "mind" + cid + stage + task + tool,
  7591. "style": {
  7592. "width": "90%",
  7593. "height": "90%",
  7594. "overflow": 'hidden'
  7595. },
  7596. "onresize": function () { }
  7597. }, {
  7598. closecallback: function () { }
  7599. }, {
  7600. "style": {
  7601. "height": "36px"
  7602. }
  7603. }).form; //创建窗体
  7604. _taskbar = {
  7605. "id": str + _formdiv.id,
  7606. "style": {
  7607. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7608. },
  7609. "name": "思维导图",
  7610. "forms": _formdiv,
  7611. "click": function () {
  7612. U.MD.D.I.openApplication(str, obj, info);
  7613. }
  7614. }
  7615. break;
  7616. case "MindMap":
  7617. aTool = 3;
  7618. _iframe = $$("iframe", {
  7619. "frameborder": "no",
  7620. "border": "0",
  7621. "scrolling ": "no",
  7622. "style": {
  7623. "cssText": "border:0;width:100%;height:100%"
  7624. },
  7625. "src": "//cloud.cocorobo.cn/mind/"
  7626. })
  7627. _box.appendChild(_iframe);
  7628. _box.appendChild(_jie);
  7629. _formdiv = new U.UF.UI.form(
  7630. "思维导图",
  7631. _box, { //"/jsmind/example/demo.html"
  7632. "id": "mind" + cid + stage + task + tool,
  7633. "style": {
  7634. "width": "90%",
  7635. "height": "90%",
  7636. "overflow": 'hidden'
  7637. },
  7638. "onresize": function () { }
  7639. }, {
  7640. closecallback: function () { }
  7641. }, {
  7642. "style": {
  7643. "height": "36px"
  7644. }
  7645. }).form; //创建窗体
  7646. _taskbar = {
  7647. "id": str + _formdiv.id,
  7648. "style": {
  7649. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7650. },
  7651. "name": "思维导图",
  7652. "forms": _formdiv,
  7653. "click": function () {
  7654. U.MD.D.I.openApplication(str, obj, info);
  7655. }
  7656. }
  7657. break;
  7658. case "doc":
  7659. aTool = 6;
  7660. _iframe = $$("iframe", {
  7661. "frameborder": "no",
  7662. "border": "0",
  7663. "scrolling ": "no",
  7664. "style": {
  7665. "cssText": "border:0;width:100%;height:100%"
  7666. },
  7667. "src": "/Office/Word/WordEditArea.htm"
  7668. })
  7669. _box.appendChild(_iframe);
  7670. _box.appendChild(_jie);
  7671. _formdiv = new U.UF.UI.form(
  7672. "协同文档",
  7673. _box, {
  7674. "id": "doc" + cid + stage + task + tool,
  7675. "style": {
  7676. "width": "90%",
  7677. "height": "90%",
  7678. "overflow": 'hidden'
  7679. },
  7680. "onresize": function () { }
  7681. }, {
  7682. closecallback: function () { }
  7683. }, {
  7684. "style": {
  7685. "height": "36px"
  7686. }
  7687. }).form; //创建窗体
  7688. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7689. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7690. })
  7691. _taskbar = {
  7692. "id": str + _formdiv.id,
  7693. "style": {
  7694. "backgroundImage": "url(/img/icon/doc.png)"
  7695. },
  7696. "name": "协同文档",
  7697. "forms": _formdiv,
  7698. "click": function () {
  7699. U.MD.D.I.openApplication(str, obj, info);
  7700. }
  7701. }
  7702. break;
  7703. case "mindNetwork": //好友打开
  7704. aTool = 7;
  7705. _iframe = $$("iframe", {
  7706. "webkitallowfullscreen": "",
  7707. "mozallowfullscreen": "",
  7708. "allowfullscreen": "",
  7709. "frameborder": "no",
  7710. "border": "0",
  7711. "scrolling ": "no",
  7712. "style": {
  7713. "cssText": "border:0; width:100%; height:100%;"
  7714. },
  7715. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7716. })
  7717. _box.appendChild(_iframe);
  7718. _box.appendChild(_jie);
  7719. _formdiv = new U.UF.UI.form(
  7720. "思维网格",
  7721. _box, {
  7722. "id": "mindNetwork" + cid + stage + task + tool,
  7723. "style": {
  7724. "width": "90%",
  7725. "height": "90%",
  7726. "overflow": 'hidden'
  7727. },
  7728. "onresize": function () { }
  7729. }, {
  7730. closecallback: function () { }
  7731. }, {
  7732. "style": {
  7733. "height": "36px"
  7734. }
  7735. }).form; //创建窗体
  7736. _taskbar = {
  7737. "id": str + _formdiv.id,
  7738. "style": {
  7739. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7740. },
  7741. "name": "思维网格",
  7742. "forms": _formdiv,
  7743. "click": function () {
  7744. U.MD.D.I.openApplication(str, obj, info);
  7745. }
  7746. }
  7747. break;
  7748. case "courseDesign":
  7749. _iframe = $$("iframe", {
  7750. "webkitallowfullscreen": "",
  7751. "mozallowfullscreen": "",
  7752. "allowfullscreen": "",
  7753. "frameborder": "no",
  7754. "border": "0",
  7755. "scrolling ": "no",
  7756. "style": {
  7757. "cssText": "border:0; width:100%; height:100%;"
  7758. },
  7759. "src": "/course-design-vue"
  7760. })
  7761. _box.appendChild(_iframe);
  7762. _box.appendChild(_jie);
  7763. _formdiv = new U.UF.UI.form(
  7764. "项目设计",
  7765. _box, {
  7766. "id": "courseDesign" + cid + stage + task + tool,
  7767. "style": {
  7768. "width": "90%",
  7769. "height": "90%",
  7770. "overflow": 'hidden'
  7771. },
  7772. "onresize": function () { }
  7773. }, {
  7774. closecallback: function () { }
  7775. }, {
  7776. "style": {
  7777. "height": "36px"
  7778. }
  7779. }).form; //创建窗体
  7780. _taskbar = {
  7781. "id": str + _formdiv.id,
  7782. "style": {
  7783. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7784. },
  7785. "name": "项目设计",
  7786. "forms": _formdiv,
  7787. "click": function () {
  7788. U.MD.D.I.openApplication(str, obj, info);
  7789. }
  7790. }
  7791. break;
  7792. }
  7793. const script1 = document.createElement("script");
  7794. script1.type = "text/javascript";
  7795. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7796. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7797. const script2 = document.createElement("script");
  7798. script2.type = "text/javascript";
  7799. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7800. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7801. const script3 = document.createElement("script");
  7802. script3.type = "text/javascript";
  7803. script3.charset = "UTF-8";
  7804. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7805. const script4 = document.createElement("script");
  7806. script4.type = "text/javascript";
  7807. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7808. script4.src = window.origin + "/js/Common/jietu2E.js";
  7809. if (_iframe) {
  7810. if (str == 'doc') {
  7811. _iframe = _formdiv.querySelector('iframe')
  7812. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7813. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7814. _iframe.contentWindow.document.body.appendChild(script1);
  7815. _iframe.contentWindow.document.body.appendChild(script2);
  7816. // _iframe.contentWindow.document.body.appendChild(script3);
  7817. _iframe.contentWindow.document.body.appendChild(script4);
  7818. })
  7819. if (onloadListener) {
  7820. _iframe.contentDocument.location.reload()
  7821. } else {
  7822. _iframe.contentDocument.location.reload()
  7823. }
  7824. } else if (str == 'courseDesign') {
  7825. U.UF.DL.iframeLoad(_iframe, function () {
  7826. // _iframe.contentWindow.U.MD.O.W.load();
  7827. // _iframe.contentWindow.document.body.appendChild(script1);
  7828. _iframe.contentWindow.document.body.appendChild(script2);
  7829. _iframe.contentWindow.document.body.appendChild(script4);
  7830. })
  7831. } else if (str == 'mind') {
  7832. _iframe = _formdiv.querySelector('iframe')
  7833. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7834. //
  7835. _iframe.contentWindow.document.body.appendChild(script1);
  7836. _iframe.contentWindow.document.body.appendChild(script2);
  7837. _iframe.contentWindow.document.body.appendChild(script4);
  7838. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7839. })
  7840. if (onloadListener) {
  7841. _iframe.contentDocument.location.reload()
  7842. } else {
  7843. _iframe.contentDocument.location.reload()
  7844. }
  7845. } else if (str == 'whiteboard') {
  7846. _iframe = _formdiv.querySelector('iframe')
  7847. let onloadListener = _iframe.onload = () => {
  7848. _iframe.contentWindow.document.body.appendChild(script1);
  7849. _iframe.contentWindow.document.body.appendChild(script2);
  7850. _iframe.contentWindow.document.body.appendChild(script4);
  7851. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7852. };
  7853. // if (onloadListener) {
  7854. // try {
  7855. // _iframe.src += "?cocorobo="+new Date().getTime()
  7856. // _iframe.contentWindow.document.location.reload()
  7857. // } catch (error) {
  7858. // }
  7859. // } else {
  7860. // _iframe.contentDocument.location.reload()
  7861. // }
  7862. } else {
  7863. _iframe.onload = () => {
  7864. _iframe.contentWindow.document.body.appendChild(script1);
  7865. _iframe.contentWindow.document.body.appendChild(script2);
  7866. // _iframe.contentWindow.document.body.appendChild(script3);
  7867. _iframe.contentWindow.document.body.appendChild(script4);
  7868. };
  7869. }
  7870. _jie.onclick = async () => {
  7871. let text = ''
  7872. if (aTool == 1) {
  7873. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7874. } else if (aTool == 6) {
  7875. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7876. } else if (aTool == 3) {
  7877. text = await U.MD.D.I.getEditorContent(_iframe);
  7878. }
  7879. _loading.style.display = 'flex'
  7880. console.log(_loading);
  7881. var _ajs = _iframe.contentWindow.document.createElement("script");
  7882. _ajs.type = "text/javascript";
  7883. _ajs.innerHTML =
  7884. // 'console.log(' + _loading + ');\n' +
  7885. 'var _js = document.createElement("script");\n' +
  7886. '_js.type="text/javascript";\n' +
  7887. '_js.charset="UTF-8";\n' +
  7888. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7889. "_js.onload = function(){\n" +
  7890. ' var a = document.getElementsByTagName("img")\n' +
  7891. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7892. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7893. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7894. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7895. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7896. "beforeUpload_shishi(file," +
  7897. "'" +
  7898. _userid +
  7899. "'" +
  7900. ", " +
  7901. "'" +
  7902. _cid +
  7903. "'" +
  7904. ", " +
  7905. "'" +
  7906. _stage +
  7907. "'" +
  7908. ", " +
  7909. "'" +
  7910. _task +
  7911. "'" +
  7912. ", " +
  7913. "'" +
  7914. _tool +
  7915. "'" +
  7916. ", " +
  7917. "'" +
  7918. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7919. "'" +
  7920. ", " +
  7921. "'" +
  7922. aTool +
  7923. "'" +
  7924. ", " +
  7925. "`" +
  7926. text +
  7927. "`" +
  7928. ")\n" +
  7929. " });\n" +
  7930. "}\n" +
  7931. "document.head.appendChild(_js);\n";
  7932. _iframe.contentWindow.document.head.appendChild(_ajs);
  7933. }
  7934. }
  7935. //U.MD.D.I.openClick(str);
  7936. //如果有任务栏信息
  7937. // if (_taskbar) {
  7938. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7939. // }
  7940. }
  7941. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7942. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7943. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7944. _userid = student.userid, //登录用户id
  7945. _username = student.student //用户名字
  7946. let _iframe;
  7947. let _cid = cid,
  7948. _stage = stage,
  7949. _task = task,
  7950. _tool = tool;
  7951. var _jie = $$("div", {
  7952. "style": {
  7953. "position": "absolute",
  7954. "bottom": "50px",
  7955. "right": "50px",
  7956. "zIndex": "9999",
  7957. "backgroundColor": "#2268bc",
  7958. "color": "#fff",
  7959. "padding": "12px 20px",
  7960. "cursor": "pointer",
  7961. "borderRadius": "4px",
  7962. },
  7963. "innerHTML": "提交作业"
  7964. })
  7965. let aTool = ''
  7966. let _loading = document.createElement('div')
  7967. _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;"
  7968. // _loading.id = "";
  7969. let _lchild = document.createElement('div')
  7970. let _limg = document.createElement('img')
  7971. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7972. _limg.style = "width: 26px;margin-right: 10px;"
  7973. _lchild.appendChild(_limg)
  7974. let _lspan = document.createElement('span')
  7975. _lspan.innerHTML = "上传中..."
  7976. _lchild.appendChild(_lspan)
  7977. _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%);"
  7978. _loading.appendChild(_lchild)
  7979. var _box = $$('div', {
  7980. "style": {
  7981. "position": "relative",
  7982. "width": "100%",
  7983. "height": "100%",
  7984. },
  7985. })
  7986. _box.appendChild(_loading)
  7987. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7988. switch (str) {
  7989. case "whiteboard":
  7990. aTool = 1;
  7991. _iframe = $$("iframe", {
  7992. "frameborder": "no",
  7993. "border": "0",
  7994. "scrolling ": "no",
  7995. "style": {
  7996. "cssText": "border:0;width:100%;height:100%"
  7997. },
  7998. "src": "https://beta.iwb.cocorobo.cn/"
  7999. })
  8000. _box.appendChild(_iframe);
  8001. _box.appendChild(_jie);
  8002. _formdiv = new U.UF.UI.form(
  8003. "电子白板-" + _username,
  8004. _box, {
  8005. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8006. "style": {
  8007. "width": "90%",
  8008. "height": "90%",
  8009. "overflow": 'hidden'
  8010. },
  8011. "onresize": function () { }
  8012. }, {
  8013. closecallback: function () { }
  8014. }, {
  8015. "style": {
  8016. "height": "36px"
  8017. }
  8018. }).form; //创建窗体
  8019. _taskbar = {
  8020. "id": str + _formdiv.id,
  8021. "style": {
  8022. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8023. },
  8024. "name": "电子白板",
  8025. "forms": _formdiv,
  8026. "click": function () {
  8027. U.MD.D.I.openApplication(str, obj, info);
  8028. }
  8029. }
  8030. break;
  8031. case "mind":
  8032. aTool = 3;
  8033. _iframe = $$("iframe", {
  8034. "frameborder": "no",
  8035. "border": "0",
  8036. "scrolling ": "no",
  8037. "style": {
  8038. "cssText": "border:0;width:100%;height:100%"
  8039. },
  8040. "src": "/kityminder-editor/dist/index.html"
  8041. })
  8042. _box.appendChild(_iframe);
  8043. _box.appendChild(_jie);
  8044. _formdiv = new U.UF.UI.form(
  8045. "思维导图-" + _username,
  8046. _box, { //"/jsmind/example/demo.html"
  8047. "id": "mind" + cid + stage + task + tool + _userid,
  8048. "style": {
  8049. "width": "90%",
  8050. "height": "90%",
  8051. "overflow": 'hidden'
  8052. },
  8053. "onresize": function () { }
  8054. }, {
  8055. closecallback: function () { }
  8056. }, {
  8057. "style": {
  8058. "height": "36px"
  8059. }
  8060. }).form; //创建窗体
  8061. _taskbar = {
  8062. "id": str + _formdiv.id,
  8063. "style": {
  8064. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8065. },
  8066. "name": "思维导图",
  8067. "forms": _formdiv,
  8068. "click": function () {
  8069. U.MD.D.I.openApplication(str, obj, info);
  8070. }
  8071. }
  8072. break;
  8073. case "MindMap":
  8074. aTool = 3;
  8075. _iframe = $$("iframe", {
  8076. "frameborder": "no",
  8077. "border": "0",
  8078. "scrolling ": "no",
  8079. "style": {
  8080. "cssText": "border:0;width:100%;height:100%"
  8081. },
  8082. "src": "//cloud.cocorobo.cn/mind/"
  8083. })
  8084. _box.appendChild(_iframe);
  8085. _box.appendChild(_jie);
  8086. _formdiv = new U.UF.UI.form(
  8087. "思维导图-" + _username,
  8088. _box, { //"/jsmind/example/demo.html"
  8089. "id": "mind" + cid + stage + task + tool + _userid,
  8090. "style": {
  8091. "width": "90%",
  8092. "height": "90%",
  8093. "overflow": 'hidden'
  8094. },
  8095. "onresize": function () { }
  8096. }, {
  8097. closecallback: function () { }
  8098. }, {
  8099. "style": {
  8100. "height": "36px"
  8101. }
  8102. }).form; //创建窗体
  8103. _taskbar = {
  8104. "id": str + _formdiv.id,
  8105. "style": {
  8106. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8107. },
  8108. "name": "思维导图",
  8109. "forms": _formdiv,
  8110. "click": function () {
  8111. U.MD.D.I.openApplication(str, obj, info);
  8112. }
  8113. }
  8114. break;
  8115. case "doc":
  8116. aTool = 6;
  8117. _iframe = $$("iframe", {
  8118. "frameborder": "no",
  8119. "border": "0",
  8120. "scrolling ": "no",
  8121. "style": {
  8122. "cssText": "border:0;width:100%;height:100%"
  8123. },
  8124. "src": "/Office/Word/WordEditArea.htm"
  8125. })
  8126. _box.appendChild(_iframe);
  8127. _box.appendChild(_jie);
  8128. _formdiv = new U.UF.UI.form(
  8129. "协同文档-" + _username,
  8130. _box, {
  8131. "id": "doc" + cid + stage + task + tool + _userid,
  8132. "style": {
  8133. "width": "90%",
  8134. "height": "90%",
  8135. "overflow": 'hidden'
  8136. },
  8137. "onresize": function () { }
  8138. }, {
  8139. closecallback: function () { }
  8140. }, {
  8141. "style": {
  8142. "height": "36px"
  8143. }
  8144. }).form; //创建窗体
  8145. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8146. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8147. })
  8148. _taskbar = {
  8149. "id": str + _formdiv.id,
  8150. "style": {
  8151. "backgroundImage": "url(/img/icon/doc.png)"
  8152. },
  8153. "name": "协同文档",
  8154. "forms": _formdiv,
  8155. "click": function () {
  8156. U.MD.D.I.openApplication(str, obj, info);
  8157. }
  8158. }
  8159. break;
  8160. case "mindNetwork": //好友打开
  8161. aTool = 7;
  8162. _iframe = $$("iframe", {
  8163. "webkitallowfullscreen": "",
  8164. "mozallowfullscreen": "",
  8165. "allowfullscreen": "",
  8166. "frameborder": "no",
  8167. "border": "0",
  8168. "scrolling ": "no",
  8169. "style": {
  8170. "cssText": "border:0; width:100%; height:100%;"
  8171. },
  8172. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8173. })
  8174. _box.appendChild(_iframe);
  8175. _box.appendChild(_jie);
  8176. _formdiv = new U.UF.UI.form(
  8177. "思维网格-" + _username,
  8178. _box, {
  8179. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8180. "style": {
  8181. "width": "90%",
  8182. "height": "90%",
  8183. "overflow": 'hidden'
  8184. },
  8185. "onresize": function () { }
  8186. }, {
  8187. closecallback: function () { }
  8188. }, {
  8189. "style": {
  8190. "height": "36px"
  8191. }
  8192. }).form; //创建窗体
  8193. _taskbar = {
  8194. "id": str + _formdiv.id,
  8195. "style": {
  8196. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8197. },
  8198. "name": "思维网格",
  8199. "forms": _formdiv,
  8200. "click": function () {
  8201. U.MD.D.I.openApplication(str, obj, info);
  8202. }
  8203. }
  8204. break;
  8205. case "courseDesign":
  8206. _iframe = $$("iframe", {
  8207. "webkitallowfullscreen": "",
  8208. "mozallowfullscreen": "",
  8209. "allowfullscreen": "",
  8210. "frameborder": "no",
  8211. "border": "0",
  8212. "scrolling ": "no",
  8213. "style": {
  8214. "cssText": "border:0; width:100%; height:100%;"
  8215. },
  8216. "src": "/course-design-vue"
  8217. })
  8218. _box.appendChild(_iframe);
  8219. _box.appendChild(_jie);
  8220. _formdiv = new U.UF.UI.form(
  8221. "项目设计-" + _username,
  8222. _box, {
  8223. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8224. "style": {
  8225. "width": "90%",
  8226. "height": "90%",
  8227. "overflow": 'hidden'
  8228. },
  8229. "onresize": function () { }
  8230. }, {
  8231. closecallback: function () { }
  8232. }, {
  8233. "style": {
  8234. "height": "36px"
  8235. }
  8236. }).form; //创建窗体
  8237. _taskbar = {
  8238. "id": str + _formdiv.id,
  8239. "style": {
  8240. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8241. },
  8242. "name": "项目设计",
  8243. "forms": _formdiv,
  8244. "click": function () {
  8245. U.MD.D.I.openApplication(str, obj, info);
  8246. }
  8247. }
  8248. break;
  8249. }
  8250. const script1 = document.createElement("script");
  8251. script1.type = "text/javascript";
  8252. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8253. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8254. const script2 = document.createElement("script");
  8255. script2.type = "text/javascript";
  8256. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8257. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8258. const script3 = document.createElement("script");
  8259. script3.type = "text/javascript";
  8260. script3.charset = "UTF-8";
  8261. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8262. const script4 = document.createElement("script");
  8263. script4.type = "text/javascript";
  8264. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8265. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8266. if (_iframe) {
  8267. if (str == 'doc') {
  8268. _iframe = _formdiv.querySelector('iframe')
  8269. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8270. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8271. _iframe.contentWindow.document.body.appendChild(script1);
  8272. _iframe.contentWindow.document.body.appendChild(script2);
  8273. // _iframe.contentWindow.document.body.appendChild(script3);
  8274. _iframe.contentWindow.document.body.appendChild(script4);
  8275. })
  8276. if (onloadListener) {
  8277. _iframe.contentDocument.location.reload()
  8278. } else {
  8279. _iframe.contentDocument.location.reload()
  8280. }
  8281. } else if (str == 'courseDesign') {
  8282. U.UF.DL.iframeLoad(_iframe, function () {
  8283. // _iframe.contentWindow.U.MD.O.W.load();
  8284. // _iframe.contentWindow.document.body.appendChild(script1);
  8285. _iframe.contentWindow.document.body.appendChild(script2);
  8286. _iframe.contentWindow.document.body.appendChild(script4);
  8287. })
  8288. } else if (str == 'mind') {
  8289. _iframe = _formdiv.querySelector('iframe')
  8290. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8291. //
  8292. _iframe.contentWindow.document.body.appendChild(script1);
  8293. _iframe.contentWindow.document.body.appendChild(script2);
  8294. _iframe.contentWindow.document.body.appendChild(script4);
  8295. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8296. })
  8297. if (onloadListener) {
  8298. _iframe.contentDocument.location.reload()
  8299. } else {
  8300. _iframe.contentDocument.location.reload()
  8301. }
  8302. } else if (str == 'whiteboard') {
  8303. _iframe = _formdiv.querySelector('iframe')
  8304. let onloadListener = _iframe.onload = () => {
  8305. _iframe.contentWindow.document.body.appendChild(script1);
  8306. _iframe.contentWindow.document.body.appendChild(script2);
  8307. _iframe.contentWindow.document.body.appendChild(script4);
  8308. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8309. };
  8310. // if (onloadListener) {
  8311. // try {
  8312. // _iframe.src += "?cocorobo="+new Date().getTime()
  8313. // _iframe.contentWindow.document.location.reload()
  8314. // } catch (error) {
  8315. // }
  8316. // } else {
  8317. // _iframe.contentDocument.location.reload()
  8318. // }
  8319. } else {
  8320. _iframe.onload = () => {
  8321. _iframe.contentWindow.document.body.appendChild(script1);
  8322. _iframe.contentWindow.document.body.appendChild(script2);
  8323. // _iframe.contentWindow.document.body.appendChild(script3);
  8324. _iframe.contentWindow.document.body.appendChild(script4);
  8325. };
  8326. }
  8327. _jie.onclick = async () => {
  8328. let text = ''
  8329. if (aTool == 1) {
  8330. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8331. } else if (aTool == 6) {
  8332. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8333. } else if (aTool == 3) {
  8334. text = await U.MD.D.I.getEditorContent(_iframe);
  8335. }
  8336. _loading.style.display = 'flex'
  8337. console.log(_loading);
  8338. var _ajs = _iframe.contentWindow.document.createElement("script");
  8339. _ajs.type = "text/javascript";
  8340. _ajs.innerHTML =
  8341. // 'console.log(' + _loading + ');\n' +
  8342. 'var _js = document.createElement("script");\n' +
  8343. '_js.type="text/javascript";\n' +
  8344. '_js.charset="UTF-8";\n' +
  8345. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8346. "_js.onload = function(){\n" +
  8347. ' var a = document.getElementsByTagName("img")\n' +
  8348. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8349. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8350. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8351. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8352. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8353. "beforeUpload_shishi(file," +
  8354. "'" +
  8355. _userid +
  8356. "'" +
  8357. ", " +
  8358. "'" +
  8359. _cid +
  8360. "'" +
  8361. ", " +
  8362. "'" +
  8363. _stage +
  8364. "'" +
  8365. ", " +
  8366. "'" +
  8367. _task +
  8368. "'" +
  8369. ", " +
  8370. "'" +
  8371. _tool +
  8372. "'" +
  8373. ", " +
  8374. "'" +
  8375. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8376. "'" +
  8377. ", " +
  8378. "'" +
  8379. aTool +
  8380. "'" +
  8381. ", " +
  8382. "`" +
  8383. text +
  8384. "`" +
  8385. ")\n" +
  8386. " });\n" +
  8387. "}\n" +
  8388. "document.head.appendChild(_js);\n";
  8389. _iframe.contentWindow.document.head.appendChild(_ajs);
  8390. }
  8391. }
  8392. }
  8393. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8394. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8395. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8396. _userid = student.userid, //登录用户id
  8397. _username = student.student //用户名字
  8398. let _iframe;
  8399. let _cid = cid,
  8400. _stage = stage,
  8401. _task = task,
  8402. _tool = tool;
  8403. var _jie = $$("div", {
  8404. "style": {
  8405. "position": "absolute",
  8406. "bottom": "50px",
  8407. "right": "50px",
  8408. "zIndex": "9999",
  8409. "backgroundColor": "#2268bc",
  8410. "color": "#fff",
  8411. "padding": "12px 20px",
  8412. "cursor": "pointer",
  8413. "borderRadius": "4px",
  8414. },
  8415. "innerHTML": "提交作业"
  8416. })
  8417. let aTool = ''
  8418. let _loading = document.createElement('div')
  8419. _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;"
  8420. // _loading.id = "";
  8421. let _lchild = document.createElement('div')
  8422. let _limg = document.createElement('img')
  8423. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8424. _limg.style = "width: 26px;margin-right: 10px;"
  8425. _lchild.appendChild(_limg)
  8426. let _lspan = document.createElement('span')
  8427. _lspan.innerHTML = "上传中..."
  8428. _lchild.appendChild(_lspan)
  8429. _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%);"
  8430. _loading.appendChild(_lchild)
  8431. var _box = $$('div', {
  8432. "style": {
  8433. "position": "relative",
  8434. "width": "100%",
  8435. "height": "100%",
  8436. },
  8437. })
  8438. _box.appendChild(_loading)
  8439. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8440. switch (str) {
  8441. case "whiteboard":
  8442. aTool = 1;
  8443. _iframe = $$("iframe", {
  8444. "frameborder": "no",
  8445. "border": "0",
  8446. "scrolling ": "no",
  8447. "style": {
  8448. "cssText": "border:0;width:100%;height:100%"
  8449. },
  8450. "src": "https://beta.iwb.cocorobo.cn/"
  8451. })
  8452. _box.appendChild(_iframe);
  8453. _box.appendChild(_jie);
  8454. _formdiv = new U.UF.UI.form(
  8455. "电子白板-" + _username,
  8456. _box, {
  8457. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8458. "style": {
  8459. "width": "90%",
  8460. "height": "90%",
  8461. "overflow": 'hidden'
  8462. },
  8463. "onresize": function () { }
  8464. }, {
  8465. closecallback: function () { }
  8466. }, {
  8467. "style": {
  8468. "height": "36px"
  8469. }
  8470. }).form; //创建窗体
  8471. _taskbar = {
  8472. "id": str + _formdiv.id,
  8473. "style": {
  8474. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8475. },
  8476. "name": "电子白板",
  8477. "forms": _formdiv,
  8478. "click": function () {
  8479. U.MD.D.I.openApplication(str, obj, info);
  8480. }
  8481. }
  8482. break;
  8483. case "mind":
  8484. aTool = 3;
  8485. _iframe = $$("iframe", {
  8486. "frameborder": "no",
  8487. "border": "0",
  8488. "scrolling ": "no",
  8489. "style": {
  8490. "cssText": "border:0;width:100%;height:100%"
  8491. },
  8492. "src": "/kityminder-editor/dist/index.html"
  8493. })
  8494. _box.appendChild(_iframe);
  8495. _box.appendChild(_jie);
  8496. _formdiv = new U.UF.UI.form(
  8497. "思维导图-" + _username,
  8498. _box, { //"/jsmind/example/demo.html"
  8499. "id": "mind" + cid + stage + task + tool + _userid,
  8500. "style": {
  8501. "width": "90%",
  8502. "height": "90%",
  8503. "overflow": 'hidden'
  8504. },
  8505. "onresize": function () { }
  8506. }, {
  8507. closecallback: function () { }
  8508. }, {
  8509. "style": {
  8510. "height": "36px"
  8511. }
  8512. }).form; //创建窗体
  8513. _taskbar = {
  8514. "id": str + _formdiv.id,
  8515. "style": {
  8516. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8517. },
  8518. "name": "思维导图",
  8519. "forms": _formdiv,
  8520. "click": function () {
  8521. U.MD.D.I.openApplication(str, obj, info);
  8522. }
  8523. }
  8524. break;
  8525. case "MindMap":
  8526. aTool = 3;
  8527. _iframe = $$("iframe", {
  8528. "frameborder": "no",
  8529. "border": "0",
  8530. "scrolling ": "no",
  8531. "style": {
  8532. "cssText": "border:0;width:100%;height:100%"
  8533. },
  8534. "src": "//cloud.cocorobo.cn/mind/"
  8535. })
  8536. _box.appendChild(_iframe);
  8537. _box.appendChild(_jie);
  8538. _formdiv = new U.UF.UI.form(
  8539. "思维导图-" + _username,
  8540. _box, { //"/jsmind/example/demo.html"
  8541. "id": "mind" + cid + stage + task + tool + _userid,
  8542. "style": {
  8543. "width": "90%",
  8544. "height": "90%",
  8545. "overflow": 'hidden'
  8546. },
  8547. "onresize": function () { }
  8548. }, {
  8549. closecallback: function () { }
  8550. }, {
  8551. "style": {
  8552. "height": "36px"
  8553. }
  8554. }).form; //创建窗体
  8555. _taskbar = {
  8556. "id": str + _formdiv.id,
  8557. "style": {
  8558. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8559. },
  8560. "name": "思维导图",
  8561. "forms": _formdiv,
  8562. "click": function () {
  8563. U.MD.D.I.openApplication(str, obj, info);
  8564. }
  8565. }
  8566. break;
  8567. case "doc":
  8568. aTool = 6;
  8569. _iframe = $$("iframe", {
  8570. "frameborder": "no",
  8571. "border": "0",
  8572. "scrolling ": "no",
  8573. "style": {
  8574. "cssText": "border:0;width:100%;height:100%"
  8575. },
  8576. "src": "/Office/Word/WordEditArea.htm"
  8577. })
  8578. _box.appendChild(_iframe);
  8579. _box.appendChild(_jie);
  8580. _formdiv = new U.UF.UI.form(
  8581. "协同文档-" + _username,
  8582. _box, {
  8583. "id": "doc" + cid + stage + task + tool + _userid,
  8584. "style": {
  8585. "width": "90%",
  8586. "height": "90%",
  8587. "overflow": 'hidden'
  8588. },
  8589. "onresize": function () { }
  8590. }, {
  8591. closecallback: function () { }
  8592. }, {
  8593. "style": {
  8594. "height": "36px"
  8595. }
  8596. }).form; //创建窗体
  8597. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8598. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8599. })
  8600. _taskbar = {
  8601. "id": str + _formdiv.id,
  8602. "style": {
  8603. "backgroundImage": "url(/img/icon/doc.png)"
  8604. },
  8605. "name": "协同文档",
  8606. "forms": _formdiv,
  8607. "click": function () {
  8608. U.MD.D.I.openApplication(str, obj, info);
  8609. }
  8610. }
  8611. break;
  8612. case "mindNetwork": //好友打开
  8613. aTool = 7;
  8614. _iframe = $$("iframe", {
  8615. "webkitallowfullscreen": "",
  8616. "mozallowfullscreen": "",
  8617. "allowfullscreen": "",
  8618. "frameborder": "no",
  8619. "border": "0",
  8620. "scrolling ": "no",
  8621. "style": {
  8622. "cssText": "border:0; width:100%; height:100%;"
  8623. },
  8624. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8625. })
  8626. _box.appendChild(_iframe);
  8627. _box.appendChild(_jie);
  8628. _formdiv = new U.UF.UI.form(
  8629. "思维网格-" + _username,
  8630. _box, {
  8631. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8632. "style": {
  8633. "width": "90%",
  8634. "height": "90%",
  8635. "overflow": 'hidden'
  8636. },
  8637. "onresize": function () { }
  8638. }, {
  8639. closecallback: function () { }
  8640. }, {
  8641. "style": {
  8642. "height": "36px"
  8643. }
  8644. }).form; //创建窗体
  8645. _taskbar = {
  8646. "id": str + _formdiv.id,
  8647. "style": {
  8648. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8649. },
  8650. "name": "思维网格",
  8651. "forms": _formdiv,
  8652. "click": function () {
  8653. U.MD.D.I.openApplication(str, obj, info);
  8654. }
  8655. }
  8656. break;
  8657. case "courseDesign":
  8658. _iframe = $$("iframe", {
  8659. "webkitallowfullscreen": "",
  8660. "mozallowfullscreen": "",
  8661. "allowfullscreen": "",
  8662. "frameborder": "no",
  8663. "border": "0",
  8664. "scrolling ": "no",
  8665. "style": {
  8666. "cssText": "border:0; width:100%; height:100%;"
  8667. },
  8668. "src": "/course-design-vue"
  8669. })
  8670. _box.appendChild(_iframe);
  8671. _box.appendChild(_jie);
  8672. _formdiv = new U.UF.UI.form(
  8673. "项目设计-" + _username,
  8674. _box, {
  8675. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8676. "style": {
  8677. "width": "90%",
  8678. "height": "90%",
  8679. "overflow": 'hidden'
  8680. },
  8681. "onresize": function () { }
  8682. }, {
  8683. closecallback: function () { }
  8684. }, {
  8685. "style": {
  8686. "height": "36px"
  8687. }
  8688. }).form; //创建窗体
  8689. _taskbar = {
  8690. "id": str + _formdiv.id,
  8691. "style": {
  8692. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8693. },
  8694. "name": "项目设计",
  8695. "forms": _formdiv,
  8696. "click": function () {
  8697. U.MD.D.I.openApplication(str, obj, info);
  8698. }
  8699. }
  8700. break;
  8701. }
  8702. const script1 = document.createElement("script");
  8703. script1.type = "text/javascript";
  8704. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8705. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8706. const script2 = document.createElement("script");
  8707. script2.type = "text/javascript";
  8708. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8709. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8710. const script3 = document.createElement("script");
  8711. script3.type = "text/javascript";
  8712. script3.charset = "UTF-8";
  8713. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8714. const script4 = document.createElement("script");
  8715. script4.type = "text/javascript";
  8716. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8717. script4.src = window.origin + "/js/Common/jietu2E.js";
  8718. if (_iframe) {
  8719. if (str == 'doc') {
  8720. _iframe = _formdiv.querySelector('iframe')
  8721. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8722. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8723. _iframe.contentWindow.document.body.appendChild(script1);
  8724. _iframe.contentWindow.document.body.appendChild(script2);
  8725. // _iframe.contentWindow.document.body.appendChild(script3);
  8726. _iframe.contentWindow.document.body.appendChild(script4);
  8727. })
  8728. if (onloadListener) {
  8729. _iframe.contentDocument.location.reload()
  8730. } else {
  8731. _iframe.contentDocument.location.reload()
  8732. }
  8733. } else if (str == 'courseDesign') {
  8734. U.UF.DL.iframeLoad(_iframe, function () {
  8735. // _iframe.contentWindow.U.MD.O.W.load();
  8736. // _iframe.contentWindow.document.body.appendChild(script1);
  8737. _iframe.contentWindow.document.body.appendChild(script2);
  8738. _iframe.contentWindow.document.body.appendChild(script4);
  8739. })
  8740. } else if (str == 'mind') {
  8741. _iframe = _formdiv.querySelector('iframe')
  8742. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8743. //
  8744. _iframe.contentWindow.document.body.appendChild(script1);
  8745. _iframe.contentWindow.document.body.appendChild(script2);
  8746. _iframe.contentWindow.document.body.appendChild(script4);
  8747. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8748. })
  8749. if (onloadListener) {
  8750. _iframe.contentDocument.location.reload()
  8751. } else {
  8752. _iframe.contentDocument.location.reload()
  8753. }
  8754. } else if (str == 'whiteboard') {
  8755. _iframe = _formdiv.querySelector('iframe')
  8756. let onloadListener = _iframe.onload = () => {
  8757. _iframe.contentWindow.document.body.appendChild(script1);
  8758. _iframe.contentWindow.document.body.appendChild(script2);
  8759. _iframe.contentWindow.document.body.appendChild(script4);
  8760. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8761. };
  8762. // if (onloadListener) {
  8763. // try {
  8764. // _iframe.src += "?cocorobo="+new Date().getTime()
  8765. // _iframe.contentWindow.document.location.reload()
  8766. // } catch (error) {
  8767. // }
  8768. // } else {
  8769. // _iframe.contentDocument.location.reload()
  8770. // }
  8771. } else {
  8772. _iframe.onload = () => {
  8773. _iframe.contentWindow.document.body.appendChild(script1);
  8774. _iframe.contentWindow.document.body.appendChild(script2);
  8775. // _iframe.contentWindow.document.body.appendChild(script3);
  8776. _iframe.contentWindow.document.body.appendChild(script4);
  8777. };
  8778. }
  8779. _jie.onclick = async () => {
  8780. let text = ''
  8781. if (aTool == 1) {
  8782. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8783. } else if (aTool == 6) {
  8784. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8785. } else if (aTool == 3) {
  8786. text = await U.MD.D.I.getEditorContent(_iframe);
  8787. }
  8788. _loading.style.display = 'flex'
  8789. console.log(_loading);
  8790. var _ajs = _iframe.contentWindow.document.createElement("script");
  8791. _ajs.type = "text/javascript";
  8792. _ajs.innerHTML =
  8793. // 'console.log(' + _loading + ');\n' +
  8794. 'var _js = document.createElement("script");\n' +
  8795. '_js.type="text/javascript";\n' +
  8796. '_js.charset="UTF-8";\n' +
  8797. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8798. "_js.onload = function(){\n" +
  8799. ' var a = document.getElementsByTagName("img")\n' +
  8800. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8801. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8802. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8803. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8804. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8805. "beforeUpload_shishi(file," +
  8806. "'" +
  8807. _userid +
  8808. "'" +
  8809. ", " +
  8810. "'" +
  8811. _cid +
  8812. "'" +
  8813. ", " +
  8814. "'" +
  8815. _stage +
  8816. "'" +
  8817. ", " +
  8818. "'" +
  8819. _task +
  8820. "'" +
  8821. ", " +
  8822. "'" +
  8823. _tool +
  8824. "'" +
  8825. ", " +
  8826. "'" +
  8827. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8828. "'" +
  8829. ", " +
  8830. "'" +
  8831. aTool +
  8832. "'" +
  8833. ", " +
  8834. "`" +
  8835. text +
  8836. "`" +
  8837. ")\n" +
  8838. " });\n" +
  8839. "}\n" +
  8840. "document.head.appendChild(_js);\n";
  8841. _iframe.contentWindow.document.head.appendChild(_ajs);
  8842. }
  8843. }
  8844. }
  8845. U.MD.D.I.getEditorContent = function (iframe) {
  8846. return new Promise((resolve, reject) => {
  8847. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8848. console.log(content);
  8849. resolve(content)
  8850. });
  8851. });
  8852. }
  8853. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8854. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8855. // if (res.value[0].length > 0) {
  8856. // // resolve(res.value[0][0].text);
  8857. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8858. // $(fileInput).val('');
  8859. // });
  8860. // }
  8861. // }, [], { "type": "GET", "withCredentials": true });
  8862. var xmlhttp;
  8863. var Mac, Sn, DeviceId
  8864. if (window.XMLHttpRequest) {
  8865. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8866. xmlhttp = new XMLHttpRequest();
  8867. } else {
  8868. // IE6, IE5 浏览器执行代码
  8869. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8870. }
  8871. xmlhttp.onreadystatechange = function () {
  8872. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8873. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8874. // resolve(res.value[0][0].text);
  8875. if (type == '2') {
  8876. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8877. } else if (type == '3') {
  8878. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8879. }
  8880. } else {
  8881. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8882. }
  8883. }
  8884. }
  8885. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8886. xmlhttp.send();
  8887. }
  8888. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8889. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8890. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8891. _userinfo = US.userInfo, //登录用户信息
  8892. _userid = US.userInfo.userid //登录用户id
  8893. let _iframe;
  8894. let _cid = cid,
  8895. _stage = stage,
  8896. _task = task,
  8897. _tool = tool;
  8898. var _jie = $$("div", {
  8899. "style": {
  8900. "position": "absolute",
  8901. "bottom": "50px",
  8902. "right": "50px",
  8903. "zIndex": "9999",
  8904. "backgroundColor": "#2268bc",
  8905. "color": "#fff",
  8906. "padding": "12px 20px",
  8907. "cursor": "pointer",
  8908. "borderRadius": "4px",
  8909. },
  8910. "innerHTML": "确认并提交"
  8911. })
  8912. let aTool = ''
  8913. let _loading = document.createElement('div')
  8914. _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;"
  8915. // _loading.id = "";
  8916. let _lchild = document.createElement('div')
  8917. let _limg = document.createElement('img')
  8918. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8919. _limg.style = "width: 26px;margin-right: 10px;"
  8920. _lchild.appendChild(_limg)
  8921. let _lspan = document.createElement('span')
  8922. _lspan.innerHTML = "上传中..."
  8923. _lchild.appendChild(_lspan)
  8924. _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%);"
  8925. _loading.appendChild(_lchild)
  8926. var _box = $$('div', {
  8927. "style": {
  8928. "position": "relative",
  8929. "width": "100%",
  8930. "height": "100%",
  8931. },
  8932. })
  8933. _box.appendChild(_loading)
  8934. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8935. switch (str) {
  8936. case "whiteboard":
  8937. aTool = 1;
  8938. _iframe = $$("iframe", {
  8939. "frameborder": "no",
  8940. "border": "0",
  8941. "scrolling ": "no",
  8942. "style": {
  8943. "cssText": "border:0;width:100%;height:100%"
  8944. },
  8945. "src": "https://beta.iwb.cocorobo.cn/"
  8946. })
  8947. _box.appendChild(_iframe);
  8948. _box.appendChild(_jie);
  8949. _formdiv = new U.UF.UI.form(
  8950. "电子白板",
  8951. _box, {
  8952. "id": "whiteboards" + cid + stage + task + tool,
  8953. "style": {
  8954. "width": "90%",
  8955. "height": "90%",
  8956. "overflow": 'hidden'
  8957. },
  8958. "onresize": function () { }
  8959. }, {
  8960. closecallback: function () { }
  8961. }, {
  8962. "style": {
  8963. "height": "36px"
  8964. }
  8965. }).form; //创建窗体
  8966. _taskbar = {
  8967. "id": str + _formdiv.id,
  8968. "style": {
  8969. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8970. },
  8971. "name": "电子白板",
  8972. "forms": _formdiv,
  8973. "click": function () {
  8974. U.MD.D.I.openApplication(str, obj, info);
  8975. }
  8976. }
  8977. break;
  8978. case "mind":
  8979. aTool = 3;
  8980. _iframe = $$("iframe", {
  8981. "frameborder": "no",
  8982. "border": "0",
  8983. "scrolling ": "no",
  8984. "style": {
  8985. "cssText": "border:0;width:100%;height:100%"
  8986. },
  8987. "src": "/kityminder-editor/dist/index.html"
  8988. });
  8989. _box.appendChild(_iframe);
  8990. _box.appendChild(_jie);
  8991. _formdiv = new U.UF.UI.form(
  8992. "思维导图",
  8993. _box, { //"/jsmind/example/demo.html"
  8994. "id": "minds" + cid + stage + task + tool,
  8995. "style": {
  8996. "width": "90%",
  8997. "height": "90%",
  8998. "overflow": 'hidden'
  8999. },
  9000. "onresize": function () { }
  9001. }, {
  9002. closecallback: function () { }
  9003. }, {
  9004. "style": {
  9005. "height": "36px"
  9006. }
  9007. }).form; //创建窗体
  9008. _taskbar = {
  9009. "id": str + _formdiv.id,
  9010. "style": {
  9011. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9012. },
  9013. "name": "思维导图",
  9014. "forms": _formdiv,
  9015. "click": function () {
  9016. U.MD.D.I.openApplication(str, obj, info);
  9017. }
  9018. }
  9019. break;
  9020. case "doc":
  9021. aTool = 6;
  9022. _iframe = $$("iframe", {
  9023. "frameborder": "no",
  9024. "border": "0",
  9025. "scrolling ": "no",
  9026. "style": {
  9027. "cssText": "border:0;width:100%;height:100%"
  9028. },
  9029. "src": "/Office/Word/WordEditArea.htm"
  9030. })
  9031. _box.appendChild(_iframe);
  9032. _box.appendChild(_jie);
  9033. _formdiv = new U.UF.UI.form(
  9034. "协同文档",
  9035. _box, {
  9036. "id": "docs" + cid + stage + task + tool,
  9037. "style": {
  9038. "width": "90%",
  9039. "height": "90%",
  9040. "overflow": 'hidden'
  9041. },
  9042. "onresize": function () { }
  9043. }, {
  9044. closecallback: function () { }
  9045. }, {
  9046. "style": {
  9047. "height": "36px"
  9048. }
  9049. }).form; //创建窗体
  9050. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9051. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9052. })
  9053. _taskbar = {
  9054. "id": str + _formdiv.id,
  9055. "style": {
  9056. "backgroundImage": "url(/img/icon/doc.png)"
  9057. },
  9058. "name": "协同文档",
  9059. "forms": _formdiv,
  9060. "click": function () {
  9061. U.MD.D.I.openApplication(str, obj, info);
  9062. }
  9063. }
  9064. break;
  9065. }
  9066. const script1 = document.createElement("script");
  9067. script1.type = "text/javascript";
  9068. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9069. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9070. const script2 = document.createElement("script");
  9071. script2.type = "text/javascript";
  9072. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9073. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9074. const script3 = document.createElement("script");
  9075. script3.type = "text/javascript";
  9076. script3.charset = "UTF-8";
  9077. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9078. const script4 = document.createElement("script");
  9079. script4.type = "text/javascript";
  9080. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9081. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9082. if (_iframe) {
  9083. if (str == 'doc') {
  9084. _iframe = _formdiv.querySelector('iframe')
  9085. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9086. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9087. _iframe.contentWindow.document.body.appendChild(script1);
  9088. _iframe.contentWindow.document.body.appendChild(script2);
  9089. // _iframe.contentWindow.document.body.appendChild(script3);
  9090. _iframe.contentWindow.document.body.appendChild(script4);
  9091. })
  9092. if (onloadListener) {
  9093. _iframe.contentDocument.location.reload()
  9094. } else {
  9095. _iframe.contentDocument.location.reload()
  9096. }
  9097. } else if (str == 'mind') {
  9098. _iframe = _formdiv.querySelector('iframe')
  9099. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9100. _iframe.contentWindow.document.body.appendChild(script1);
  9101. _iframe.contentWindow.document.body.appendChild(script2);
  9102. _iframe.contentWindow.document.body.appendChild(script4);
  9103. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9104. })
  9105. if (onloadListener) {
  9106. _iframe.contentDocument.location.reload()
  9107. } else {
  9108. _iframe.contentDocument.location.reload()
  9109. }
  9110. } else {
  9111. _iframe.onload = () => {
  9112. _iframe.contentWindow.document.body.appendChild(script1);
  9113. _iframe.contentWindow.document.body.appendChild(script2);
  9114. // _iframe.contentWindow.document.body.appendChild(script3);
  9115. _iframe.contentWindow.document.body.appendChild(script4);
  9116. };
  9117. }
  9118. _jie.onclick = async () => {
  9119. let text = ''
  9120. if (aTool == 6) {
  9121. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9122. } else if (aTool == 3) {
  9123. text = await U.MD.D.I.getEditorContent(_iframe);
  9124. }
  9125. _loading.style.display = 'flex'
  9126. console.log(_loading);
  9127. var _ajs = _iframe.contentWindow.document.createElement("script");
  9128. _ajs.type = "text/javascript";
  9129. _ajs.innerHTML =
  9130. // 'console.log(' + _loading + ');\n' +
  9131. 'var _js = document.createElement("script");\n' +
  9132. '_js.type="text/javascript";\n' +
  9133. '_js.charset="UTF-8";\n' +
  9134. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9135. "_js.onload = function(){\n" +
  9136. ' var a = document.getElementsByTagName("img")\n' +
  9137. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9138. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9139. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9140. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9141. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9142. "beforeUpload_shishi(file," +
  9143. "'" +
  9144. _userid +
  9145. "'" +
  9146. ", " +
  9147. "'" +
  9148. _cid +
  9149. "'" +
  9150. ", " +
  9151. "'" +
  9152. _stage +
  9153. "'" +
  9154. ", " +
  9155. "'" +
  9156. _task +
  9157. "'" +
  9158. ", " +
  9159. "'" +
  9160. _tool +
  9161. "'" +
  9162. ", " +
  9163. "'" +
  9164. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9165. "'" +
  9166. ", " +
  9167. "'" +
  9168. aTool +
  9169. "'" +
  9170. ", " +
  9171. "`" +
  9172. text +
  9173. "`" +
  9174. ")\n" +
  9175. " });\n" +
  9176. "}\n" +
  9177. "document.head.appendChild(_js);\n";
  9178. _iframe.contentWindow.document.head.appendChild(_ajs);
  9179. }
  9180. }
  9181. //U.MD.D.I.openClick(str);
  9182. //如果有任务栏信息
  9183. // if (_taskbar) {
  9184. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9185. // }
  9186. }
  9187. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9188. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9189. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9190. _userinfo = US.userInfo, //登录用户信息
  9191. _userid = US.userInfo.userid //登录用户id
  9192. let _iframe;
  9193. let _cid = cid,
  9194. _stage = stage,
  9195. _task = task,
  9196. _tool = tool;
  9197. var _jie = $$("div", {
  9198. "style": {
  9199. "position": "absolute",
  9200. "bottom": "50px",
  9201. "right": "50px",
  9202. "zIndex": "9999",
  9203. "backgroundColor": "#2268bc",
  9204. "color": "#fff",
  9205. "padding": "12px 20px",
  9206. "cursor": "pointer",
  9207. "borderRadius": "4px",
  9208. },
  9209. "innerHTML": "确认并提交"
  9210. })
  9211. let aTool = ''
  9212. let _loading = document.createElement('div')
  9213. _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;"
  9214. // _loading.id = "";
  9215. let _lchild = document.createElement('div')
  9216. let _limg = document.createElement('img')
  9217. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9218. _limg.style = "width: 26px;margin-right: 10px;"
  9219. _lchild.appendChild(_limg)
  9220. let _lspan = document.createElement('span')
  9221. _lspan.innerHTML = "上传中..."
  9222. _lchild.appendChild(_lspan)
  9223. _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%);"
  9224. _loading.appendChild(_lchild)
  9225. var _box = $$('div', {
  9226. "style": {
  9227. "position": "relative",
  9228. "width": "100%",
  9229. "height": "100%",
  9230. },
  9231. })
  9232. _box.appendChild(_loading)
  9233. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9234. switch (str) {
  9235. case "whiteboard":
  9236. aTool = 1;
  9237. _iframe = $$("iframe", {
  9238. "frameborder": "no",
  9239. "border": "0",
  9240. "scrolling ": "no",
  9241. "style": {
  9242. "cssText": "border:0;width:100%;height:100%"
  9243. },
  9244. "src": "https://beta.iwb.cocorobo.cn/"
  9245. })
  9246. _box.appendChild(_iframe);
  9247. _box.appendChild(_jie);
  9248. _formdiv = new U.UF.UI.form(
  9249. "电子白板",
  9250. _box, {
  9251. "id": "whiteboards" + cid + stage + task + tool,
  9252. "style": {
  9253. "width": "90%",
  9254. "height": "90%",
  9255. "overflow": 'hidden'
  9256. },
  9257. "onresize": function () { }
  9258. }, {
  9259. closecallback: function () { }
  9260. }, {
  9261. "style": {
  9262. "height": "36px"
  9263. }
  9264. }).form; //创建窗体
  9265. _taskbar = {
  9266. "id": str + _formdiv.id,
  9267. "style": {
  9268. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9269. },
  9270. "name": "电子白板",
  9271. "forms": _formdiv,
  9272. "click": function () {
  9273. U.MD.D.I.openApplication(str, obj, info);
  9274. }
  9275. }
  9276. break;
  9277. case "mind":
  9278. aTool = 3;
  9279. _iframe = $$("iframe", {
  9280. "frameborder": "no",
  9281. "border": "0",
  9282. "scrolling ": "no",
  9283. "style": {
  9284. "cssText": "border:0;width:100%;height:100%"
  9285. },
  9286. "src": "/kityminder-editor/dist/index.html"
  9287. });
  9288. _box.appendChild(_iframe);
  9289. _box.appendChild(_jie);
  9290. _formdiv = new U.UF.UI.form(
  9291. "思维导图",
  9292. _box, { //"/jsmind/example/demo.html"
  9293. "id": "minds" + cid + stage + task + tool,
  9294. "style": {
  9295. "width": "90%",
  9296. "height": "90%",
  9297. "overflow": 'hidden'
  9298. },
  9299. "onresize": function () { }
  9300. }, {
  9301. closecallback: function () { }
  9302. }, {
  9303. "style": {
  9304. "height": "36px"
  9305. }
  9306. }).form; //创建窗体
  9307. _taskbar = {
  9308. "id": str + _formdiv.id,
  9309. "style": {
  9310. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9311. },
  9312. "name": "思维导图",
  9313. "forms": _formdiv,
  9314. "click": function () {
  9315. U.MD.D.I.openApplication(str, obj, info);
  9316. }
  9317. }
  9318. break;
  9319. case "doc":
  9320. aTool = 6;
  9321. _iframe = $$("iframe", {
  9322. "frameborder": "no",
  9323. "border": "0",
  9324. "scrolling ": "no",
  9325. "style": {
  9326. "cssText": "border:0;width:100%;height:100%"
  9327. },
  9328. "src": "/Office/Word/WordEditArea.htm"
  9329. })
  9330. _box.appendChild(_iframe);
  9331. _box.appendChild(_jie);
  9332. _formdiv = new U.UF.UI.form(
  9333. "协同文档",
  9334. _box, {
  9335. "id": "docs" + cid + stage + task + tool,
  9336. "style": {
  9337. "width": "90%",
  9338. "height": "90%",
  9339. "overflow": 'hidden'
  9340. },
  9341. "onresize": function () { }
  9342. }, {
  9343. closecallback: function () { }
  9344. }, {
  9345. "style": {
  9346. "height": "36px"
  9347. }
  9348. }).form; //创建窗体
  9349. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9350. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9351. })
  9352. _taskbar = {
  9353. "id": str + _formdiv.id,
  9354. "style": {
  9355. "backgroundImage": "url(/img/icon/doc.png)"
  9356. },
  9357. "name": "协同文档",
  9358. "forms": _formdiv,
  9359. "click": function () {
  9360. U.MD.D.I.openApplication(str, obj, info);
  9361. }
  9362. }
  9363. break;
  9364. }
  9365. const script1 = document.createElement("script");
  9366. script1.type = "text/javascript";
  9367. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9368. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9369. const script2 = document.createElement("script");
  9370. script2.type = "text/javascript";
  9371. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9372. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9373. const script3 = document.createElement("script");
  9374. script3.type = "text/javascript";
  9375. script3.charset = "UTF-8";
  9376. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9377. const script4 = document.createElement("script");
  9378. script4.type = "text/javascript";
  9379. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9380. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9381. if (_iframe) {
  9382. if (str == 'doc') {
  9383. _iframe = _formdiv.querySelector('iframe')
  9384. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9385. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9386. _iframe.contentWindow.document.body.appendChild(script1);
  9387. _iframe.contentWindow.document.body.appendChild(script2);
  9388. // _iframe.contentWindow.document.body.appendChild(script3);
  9389. _iframe.contentWindow.document.body.appendChild(script4);
  9390. })
  9391. if (onloadListener) {
  9392. _iframe.contentDocument.location.reload()
  9393. } else {
  9394. _iframe.contentDocument.location.reload()
  9395. }
  9396. } else if (str == 'mind') {
  9397. _iframe = _formdiv.querySelector('iframe')
  9398. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9399. _iframe.contentWindow.document.body.appendChild(script1);
  9400. _iframe.contentWindow.document.body.appendChild(script2);
  9401. _iframe.contentWindow.document.body.appendChild(script4);
  9402. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9403. })
  9404. if (onloadListener) {
  9405. _iframe.contentDocument.location.reload()
  9406. } else {
  9407. _iframe.contentDocument.location.reload()
  9408. }
  9409. } else {
  9410. _iframe.onload = () => {
  9411. _iframe.contentWindow.document.body.appendChild(script1);
  9412. _iframe.contentWindow.document.body.appendChild(script2);
  9413. // _iframe.contentWindow.document.body.appendChild(script3);
  9414. _iframe.contentWindow.document.body.appendChild(script4);
  9415. };
  9416. }
  9417. _jie.onclick = async () => {
  9418. let text = ''
  9419. if (aTool == 6) {
  9420. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9421. } else if (aTool == 3) {
  9422. text = await U.MD.D.I.getEditorContent(_iframe);
  9423. }
  9424. _loading.style.display = 'flex'
  9425. console.log(_loading);
  9426. var _ajs = _iframe.contentWindow.document.createElement("script");
  9427. _ajs.type = "text/javascript";
  9428. _ajs.innerHTML =
  9429. // 'console.log(' + _loading + ');\n' +
  9430. 'var _js = document.createElement("script");\n' +
  9431. '_js.type="text/javascript";\n' +
  9432. '_js.charset="UTF-8";\n' +
  9433. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9434. "_js.onload = function(){\n" +
  9435. ' var a = document.getElementsByTagName("img")\n' +
  9436. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9437. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9438. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9439. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9440. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9441. "beforeUpload_shishi(file," +
  9442. "'" +
  9443. _userid +
  9444. "'" +
  9445. ", " +
  9446. "'" +
  9447. _cid +
  9448. "'" +
  9449. ", " +
  9450. "'" +
  9451. _stage +
  9452. "'" +
  9453. ", " +
  9454. "'" +
  9455. _task +
  9456. "'" +
  9457. ", " +
  9458. "'" +
  9459. _tool +
  9460. "'" +
  9461. ", " +
  9462. "'" +
  9463. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9464. "'" +
  9465. ", " +
  9466. "'" +
  9467. aTool +
  9468. "'" +
  9469. ", " +
  9470. "`" +
  9471. text +
  9472. "`" +
  9473. ")\n" +
  9474. " });\n" +
  9475. "}\n" +
  9476. "document.head.appendChild(_js);\n";
  9477. _iframe.contentWindow.document.head.appendChild(_ajs);
  9478. }
  9479. }
  9480. //U.MD.D.I.openClick(str);
  9481. //如果有任务栏信息
  9482. // if (_taskbar) {
  9483. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9484. // }
  9485. }
  9486. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9487. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9488. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9489. _userinfo = US.userInfo, //登录用户信息
  9490. _userid = US.userInfo.userid //登录用户id
  9491. let _iframe;
  9492. let _cid = cid,
  9493. _stage = stage,
  9494. _task = task,
  9495. _tool = tool;
  9496. var _jie = $$("div", {
  9497. "style": {
  9498. "position": "absolute",
  9499. "bottom": "50px",
  9500. "right": "50px",
  9501. "zIndex": "9999",
  9502. "backgroundColor": "#2268bc",
  9503. "color": "#fff",
  9504. "padding": "12px 20px",
  9505. "cursor": "pointer",
  9506. "borderRadius": "4px",
  9507. },
  9508. "innerHTML": "上传模板"
  9509. })
  9510. let aTool = ''
  9511. let _loading = document.createElement('div')
  9512. _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;"
  9513. // _loading.id = "";
  9514. let _lchild = document.createElement('div')
  9515. let _limg = document.createElement('img')
  9516. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9517. _limg.style = "width: 26px;margin-right: 10px;"
  9518. _lchild.appendChild(_limg)
  9519. let _lspan = document.createElement('span')
  9520. _lspan.innerHTML = "上传中..."
  9521. _lchild.appendChild(_lspan)
  9522. _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%);"
  9523. _loading.appendChild(_lchild)
  9524. var _box = $$('div', {
  9525. "style": {
  9526. "position": "relative",
  9527. "width": "100%",
  9528. "height": "100%",
  9529. },
  9530. })
  9531. _box.appendChild(_loading)
  9532. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9533. switch (str) {
  9534. case "whiteboard":
  9535. aTool = 1;
  9536. _iframe = $$("iframe", {
  9537. "frameborder": "no",
  9538. "border": "0",
  9539. "scrolling ": "no",
  9540. "style": {
  9541. "cssText": "border:0;width:100%;height:100%"
  9542. },
  9543. "src": "https://beta.iwb.cocorobo.cn/"
  9544. })
  9545. _box.appendChild(_iframe);
  9546. _box.appendChild(_jie);
  9547. _formdiv = new U.UF.UI.form(
  9548. "电子白板",
  9549. _box, {
  9550. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9551. "style": {
  9552. "width": "90%",
  9553. "height": "90%",
  9554. "overflow": 'hidden'
  9555. },
  9556. "onresize": function () { }
  9557. }, {
  9558. closecallback: function () { }
  9559. }, {
  9560. "style": {
  9561. "height": "36px"
  9562. }
  9563. }).form; //创建窗体
  9564. _taskbar = {
  9565. "id": str + _formdiv.id,
  9566. "style": {
  9567. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9568. },
  9569. "name": "电子白板",
  9570. "forms": _formdiv,
  9571. "click": function () {
  9572. U.MD.D.I.openApplication(str, obj, info);
  9573. }
  9574. }
  9575. break;
  9576. case "mind":
  9577. aTool = 3;
  9578. _iframe = $$("iframe", {
  9579. "frameborder": "no",
  9580. "border": "0",
  9581. "scrolling ": "no",
  9582. "style": {
  9583. "cssText": "border:0;width:100%;height:100%"
  9584. },
  9585. "src": "/kityminder-editor/dist/index.html"
  9586. });
  9587. _box.appendChild(_iframe);
  9588. _box.appendChild(_jie);
  9589. _formdiv = new U.UF.UI.form(
  9590. "思维导图",
  9591. _box, { //"/jsmind/example/demo.html"
  9592. "id": "minds_Yu" + cid + stage + task + tool,
  9593. "style": {
  9594. "width": "90%",
  9595. "height": "90%",
  9596. "overflow": 'hidden'
  9597. },
  9598. "onresize": function () { }
  9599. }, {
  9600. closecallback: function () { }
  9601. }, {
  9602. "style": {
  9603. "height": "36px"
  9604. }
  9605. }).form; //创建窗体
  9606. _taskbar = {
  9607. "id": str + _formdiv.id,
  9608. "style": {
  9609. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9610. },
  9611. "name": "思维导图",
  9612. "forms": _formdiv,
  9613. "click": function () {
  9614. U.MD.D.I.openApplication(str, obj, info);
  9615. }
  9616. }
  9617. break;
  9618. case "doc":
  9619. aTool = 6;
  9620. _iframe = $$("iframe", {
  9621. "frameborder": "no",
  9622. "border": "0",
  9623. "scrolling ": "no",
  9624. "style": {
  9625. "cssText": "border:0;width:100%;height:100%"
  9626. },
  9627. "src": "/Office/Word/WordEditArea.htm"
  9628. })
  9629. _box.appendChild(_iframe);
  9630. _box.appendChild(_jie);
  9631. _formdiv = new U.UF.UI.form(
  9632. "协同文档",
  9633. _box, {
  9634. "id": "docs_Yu" + cid + stage + task + tool,
  9635. "style": {
  9636. "width": "90%",
  9637. "height": "90%",
  9638. "overflow": 'hidden'
  9639. },
  9640. "onresize": function () { }
  9641. }, {
  9642. closecallback: function () { }
  9643. }, {
  9644. "style": {
  9645. "height": "36px"
  9646. }
  9647. }).form; //创建窗体
  9648. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9649. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9650. })
  9651. _taskbar = {
  9652. "id": str + _formdiv.id,
  9653. "style": {
  9654. "backgroundImage": "url(/img/icon/doc.png)"
  9655. },
  9656. "name": "协同文档",
  9657. "forms": _formdiv,
  9658. "click": function () {
  9659. U.MD.D.I.openApplication(str, obj, info);
  9660. }
  9661. }
  9662. break;
  9663. case "CocoPi":
  9664. aTool = 57;
  9665. _iframe = $$("iframe", {
  9666. "allowpaymentrequest": "allowpaymentrequest",
  9667. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9668. "webkitallowfullscreen": "",
  9669. "mozallowfullscreen": "",
  9670. "frameborder": "no",
  9671. "border": "0",
  9672. "scrolling ": "no",
  9673. "style": {
  9674. "cssText": "border:0;width:100%;height:100%"
  9675. },
  9676. "src": "https://pi.cocorobo.cn/"
  9677. })
  9678. _box.appendChild(_iframe);
  9679. _box.appendChild(_jie);
  9680. _formdiv = new U.UF.UI.form(
  9681. "CocoPi",
  9682. _box, {
  9683. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9684. "style": {
  9685. "width": "90%",
  9686. "height": "90%",
  9687. "overflow": 'hidden'
  9688. },
  9689. "onresize": function () { }
  9690. }, {
  9691. closecallback: function () { }
  9692. }, {
  9693. "style": {
  9694. "height": "36px"
  9695. }
  9696. }).form; //创建窗体
  9697. _taskbar = {
  9698. "id": str + _formdiv.id,
  9699. "style": {
  9700. "backgroundImage": "url(/img/icon/cocopi.png)"
  9701. },
  9702. "name": "CocoPi",
  9703. "forms": _formdiv,
  9704. "click": function () {
  9705. U.MD.D.I.openApplication(str, obj, info);
  9706. }
  9707. }
  9708. break;
  9709. }
  9710. if (_iframe) {
  9711. if (str == 'doc') {
  9712. _iframe = _formdiv.querySelector('iframe')
  9713. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9714. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9715. })
  9716. if (onloadListener) {
  9717. _iframe.contentDocument.location.reload()
  9718. } else {
  9719. _iframe.contentDocument.location.reload()
  9720. }
  9721. } else if (str == 'mind') {
  9722. _iframe = _formdiv.querySelector('iframe')
  9723. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9724. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9725. })
  9726. if (onloadListener) {
  9727. _iframe.contentDocument.location.reload()
  9728. } else {
  9729. _iframe.contentDocument.location.reload()
  9730. }
  9731. } else if (str == 'whiteboard') {
  9732. _iframe = _formdiv.querySelector('iframe')
  9733. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9734. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9735. })
  9736. // if (onloadListener) {
  9737. // try {
  9738. // _iframe.src += "?cocorobo="+new Date().getTime()
  9739. // _iframe.contentWindow.document.location.reload()
  9740. // } catch (error) {
  9741. // }
  9742. // } else {
  9743. // _iframe.contentDocument.location.reload()
  9744. // }
  9745. } else if (str == 'CocoPi') {
  9746. _iframe = _formdiv.querySelector('iframe')
  9747. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9748. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9749. })
  9750. if (onloadListener) {
  9751. _iframe.contentDocument.location.reload()
  9752. } else {
  9753. _iframe.contentDocument.location.reload()
  9754. }
  9755. } else {
  9756. _iframe.onload = () => { };
  9757. }
  9758. _jie.onclick = async () => {
  9759. let text = ''
  9760. let type = '2'
  9761. if (aTool == 1) {
  9762. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9763. type = '3'
  9764. } else if (aTool == 6) {
  9765. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9766. type = '1'
  9767. } else if (aTool == 3) {
  9768. text = await U.MD.D.I.getEditorContent(_iframe);
  9769. type = '2'
  9770. } else if (aTool == 57) {
  9771. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9772. type = '4'
  9773. }
  9774. _loading.style.display = 'flex'
  9775. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9776. }
  9777. }
  9778. //U.MD.D.I.openClick(str);
  9779. //如果有任务栏信息
  9780. // if (_taskbar) {
  9781. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9782. // }
  9783. }
  9784. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9785. var xmlhttp;
  9786. var Mac, Sn, DeviceId
  9787. if (window.XMLHttpRequest) {
  9788. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9789. xmlhttp = new XMLHttpRequest();
  9790. } else {
  9791. // IE6, IE5 浏览器执行代码
  9792. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9793. }
  9794. xmlhttp.onreadystatechange = function () {
  9795. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9796. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9797. // resolve(res.value[0][0].text);
  9798. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9799. }
  9800. }
  9801. }
  9802. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9803. xmlhttp.send();
  9804. }
  9805. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9806. var xmlhttp;
  9807. var Mac, Sn, DeviceId
  9808. if (window.XMLHttpRequest) {
  9809. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9810. xmlhttp = new XMLHttpRequest();
  9811. } else {
  9812. // IE6, IE5 浏览器执行代码
  9813. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9814. }
  9815. xmlhttp.onreadystatechange = function () {
  9816. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9817. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9818. // resolve(res.value[0][0].text);
  9819. if (type == '2') {
  9820. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9821. } else if (type == '3') {
  9822. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9823. } else if (type == '4') {
  9824. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9825. }
  9826. } else {
  9827. if (type == '2') {
  9828. iframe.contentWindow.editor.minder.importData('json', '')
  9829. } else if (type == '3') {
  9830. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9831. } else if (type == '4') {
  9832. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9833. }
  9834. }
  9835. }
  9836. }
  9837. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9838. xmlhttp.send();
  9839. }
  9840. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9841. var xmlhttp;
  9842. var Mac, Sn, DeviceId
  9843. if (window.XMLHttpRequest) {
  9844. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9845. xmlhttp = new XMLHttpRequest();
  9846. } else {
  9847. // IE6, IE5 浏览器执行代码
  9848. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9849. }
  9850. xmlhttp.onreadystatechange = function () {
  9851. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9852. if (xmlhttp.response) {
  9853. // resolve(res.value[0][0].text);
  9854. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9855. // $(fileInput).val('');
  9856. // });
  9857. span.innerHTML = '上传成功'
  9858. setTimeout(() => {
  9859. loading.style.display = 'none'
  9860. }, 1000);
  9861. }
  9862. }
  9863. }
  9864. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9865. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9866. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9867. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9868. // 设置请求头,表示请求体的编码格式
  9869. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9870. // 设置请求体,使用url-encoded格式的数据
  9871. }
  9872. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9873. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9874. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9875. _userinfo = US.userInfo, //登录用户信息
  9876. _userid = US.userInfo.userid //登录用户id
  9877. let _iframe;
  9878. let _cid = cid,
  9879. _stage = stage,
  9880. _task = task,
  9881. _tool = tool;
  9882. var _jie = $$("div", {
  9883. "style": {
  9884. "position": "absolute",
  9885. "bottom": "50px",
  9886. "right": "50px",
  9887. "zIndex": "9999",
  9888. "backgroundColor": "#2268bc",
  9889. "color": "#fff",
  9890. "padding": "12px 20px",
  9891. "cursor": "pointer",
  9892. "borderRadius": "4px",
  9893. },
  9894. "innerHTML": "提交作业"
  9895. })
  9896. let aTool = ''
  9897. let _loading = document.createElement('div')
  9898. _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;"
  9899. // _loading.id = "";
  9900. let _lchild = document.createElement('div')
  9901. let _limg = document.createElement('img')
  9902. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9903. _limg.style = "width: 26px;margin-right: 10px;"
  9904. _lchild.appendChild(_limg)
  9905. let _lspan = document.createElement('span')
  9906. _lspan.innerHTML = "上传中..."
  9907. _lchild.appendChild(_lspan)
  9908. _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%);"
  9909. _loading.appendChild(_lchild)
  9910. var _box = $$('div', {
  9911. "style": {
  9912. "position": "relative",
  9913. "width": "100%",
  9914. "height": "100%",
  9915. },
  9916. })
  9917. _box.appendChild(_loading)
  9918. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9919. switch (str) {
  9920. case "CocoPi":
  9921. aTool = 57;
  9922. _iframe = $$("iframe", {
  9923. "allowpaymentrequest": "allowpaymentrequest",
  9924. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9925. "webkitallowfullscreen": "",
  9926. "mozallowfullscreen": "",
  9927. "frameborder": "no",
  9928. "border": "0",
  9929. "scrolling ": "no",
  9930. "style": {
  9931. "cssText": "border:0;width:100%;height:100%"
  9932. },
  9933. "src": "https://pi.cocorobo.cn/"
  9934. })
  9935. _box.appendChild(_iframe);
  9936. _box.appendChild(_jie);
  9937. _formdiv = new U.UF.UI.form(
  9938. "CocoPi",
  9939. _box, {
  9940. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9941. "style": {
  9942. "width": "90%",
  9943. "height": "90%",
  9944. "overflow": 'hidden'
  9945. },
  9946. "onresize": function () { }
  9947. }, {
  9948. closecallback: function () { }
  9949. }, {
  9950. "style": {
  9951. "height": "36px"
  9952. }
  9953. }).form; //创建窗体
  9954. _taskbar = {
  9955. "id": str + _formdiv.id,
  9956. "style": {
  9957. "backgroundImage": "url(/img/icon/cocopi.png)"
  9958. },
  9959. "name": "CocoPi",
  9960. "forms": _formdiv,
  9961. "click": function () {
  9962. U.MD.D.I.openApplication(str, obj, info);
  9963. }
  9964. }
  9965. break;
  9966. }
  9967. if (_iframe) {
  9968. if (str == 'CocoPi') {
  9969. _iframe = _formdiv.querySelector('iframe')
  9970. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9971. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9972. })
  9973. if (onloadListener) {
  9974. _iframe.contentDocument.location.reload()
  9975. } else {
  9976. _iframe.contentDocument.location.reload()
  9977. }
  9978. }
  9979. _jie.onclick = async () => {
  9980. let text = ''
  9981. if (aTool == 57) {
  9982. text = _iframe.contentWindow.getLoadXmlStr()
  9983. }
  9984. _loading.style.display = 'flex'
  9985. console.log(_loading);
  9986. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9987. _loading.style.display = 'none'
  9988. let _div = document.createElement('div')
  9989. _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;"
  9990. let _inner = document.createElement('div')
  9991. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9992. _inner.innerHTML = "上传成功"
  9993. _div.appendChild(_inner)
  9994. _iframe.contentWindow.window.document.body.appendChild(_div)
  9995. _div.onclick = () => {
  9996. _iframe.contentWindow.window.document.body.removeChild(_div)
  9997. }
  9998. setTimeout(() => {
  9999. _iframe.contentWindow.window.document.body.removeChild(_div)
  10000. }, 1000);
  10001. }, [], { "type": "POST", "withCredentials": true });
  10002. }
  10003. }
  10004. }
  10005. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10006. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10007. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10008. _userid = student.userid, //登录用户id
  10009. _username = student.student //用户名字
  10010. let _iframe;
  10011. let _cid = cid,
  10012. _stage = stage,
  10013. _task = task,
  10014. _tool = tool;
  10015. var _jie = $$("div", {
  10016. "style": {
  10017. "position": "absolute",
  10018. "bottom": "50px",
  10019. "right": "50px",
  10020. "zIndex": "9999",
  10021. "backgroundColor": "#2268bc",
  10022. "color": "#fff",
  10023. "padding": "12px 20px",
  10024. "cursor": "pointer",
  10025. "borderRadius": "4px",
  10026. },
  10027. "innerHTML": "提交作业"
  10028. })
  10029. let aTool = ''
  10030. let _loading = document.createElement('div')
  10031. _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;"
  10032. // _loading.id = "";
  10033. let _lchild = document.createElement('div')
  10034. let _limg = document.createElement('img')
  10035. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10036. _limg.style = "width: 26px;margin-right: 10px;"
  10037. _lchild.appendChild(_limg)
  10038. let _lspan = document.createElement('span')
  10039. _lspan.innerHTML = "上传中..."
  10040. _lchild.appendChild(_lspan)
  10041. _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%);"
  10042. _loading.appendChild(_lchild)
  10043. var _box = $$('div', {
  10044. "style": {
  10045. "position": "relative",
  10046. "width": "100%",
  10047. "height": "100%",
  10048. },
  10049. })
  10050. _box.appendChild(_loading)
  10051. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10052. switch (str) {
  10053. case "CocoPi":
  10054. aTool = 57;
  10055. _iframe = $$("iframe", {
  10056. "allowpaymentrequest": "allowpaymentrequest",
  10057. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10058. "webkitallowfullscreen": "",
  10059. "mozallowfullscreen": "",
  10060. "frameborder": "no",
  10061. "border": "0",
  10062. "scrolling ": "no",
  10063. "style": {
  10064. "cssText": "border:0;width:100%;height:100%"
  10065. },
  10066. "src": "https://pi.cocorobo.cn/"
  10067. })
  10068. _box.appendChild(_iframe);
  10069. _box.appendChild(_jie);
  10070. _formdiv = new U.UF.UI.form(
  10071. "CocoPi-" + _username,
  10072. _box, {
  10073. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10074. "style": {
  10075. "width": "90%",
  10076. "height": "90%",
  10077. "overflow": 'hidden'
  10078. },
  10079. "onresize": function () { }
  10080. }, {
  10081. closecallback: function () { }
  10082. }, {
  10083. "style": {
  10084. "height": "36px"
  10085. }
  10086. }).form; //创建窗体
  10087. _taskbar = {
  10088. "id": str + _formdiv.id,
  10089. "style": {
  10090. "backgroundImage": "url(/img/icon/cocopi.png)"
  10091. },
  10092. "name": "CocoPi",
  10093. "forms": _formdiv,
  10094. "click": function () {
  10095. U.MD.D.I.openApplication(str, obj, info);
  10096. }
  10097. }
  10098. break;
  10099. }
  10100. if (_iframe) {
  10101. if (str == 'CocoPi') {
  10102. _iframe = _formdiv.querySelector('iframe')
  10103. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10104. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10105. })
  10106. if (onloadListener) {
  10107. _iframe.contentDocument.location.reload()
  10108. } else {
  10109. _iframe.contentDocument.location.reload()
  10110. }
  10111. }
  10112. _jie.onclick = async () => {
  10113. let text = ''
  10114. if (aTool == 57) {
  10115. text = _iframe.contentWindow.getLoadXmlStr()
  10116. }
  10117. _loading.style.display = 'flex'
  10118. console.log(_loading);
  10119. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10120. _loading.style.display = 'none'
  10121. let _div = document.createElement('div')
  10122. _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;"
  10123. let _inner = document.createElement('div')
  10124. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10125. _inner.innerHTML = "上传成功"
  10126. _div.appendChild(_inner)
  10127. _iframe.contentWindow.window.document.body.appendChild(_div)
  10128. _div.onclick = () => {
  10129. _iframe.contentWindow.window.document.body.removeChild(_div)
  10130. }
  10131. setTimeout(() => {
  10132. _iframe.contentWindow.window.document.body.removeChild(_div)
  10133. }, 1000);
  10134. }, [], { "type": "POST", "withCredentials": true });
  10135. }
  10136. }
  10137. }
  10138. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10139. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10140. if (res.value[0].length > 0) {
  10141. if (atool == 57) {
  10142. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10143. }
  10144. } else {
  10145. if (atool == 57) {
  10146. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10147. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10148. }
  10149. }
  10150. }, [], { "type": "POST", "withCredentials": true });
  10151. }