DeskTop.js 698 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. ];
  627. //中山小学学生桌面图标的全局变量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  731. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. ];
  740. //hk
  741. U.MD.D.I.hkaceStudentDeskIcon = [
  742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSteacherDeskIcon = [
  751. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  752. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  753. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  754. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  758. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  759. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  760. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  761. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  762. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  763. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  764. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  767. ];
  768. //香海正覺蓮社佛教正覺中學
  769. U.MD.D.I.hkZJLSStudentDeskIcon = [
  770. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //云海
  776. U.MD.D.I.yunhaiTeacherDeskIcon = [
  777. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  784. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  785. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  786. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  787. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  788. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  789. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  790. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  792. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanTeacherDeskIcon = [
  798. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //福田
  812. U.MD.D.I.heyuanAdminDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  821. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  826. U.MD.D.I.szherTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  838. ];
  839. //dsei
  840. U.MD.D.I.dseiTeacherDeskIcon = [
  841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  847. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  848. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  849. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  850. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  851. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  852. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  853. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  854. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  855. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  856. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  857. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  858. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  859. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  860. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  861. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  862. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  863. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  864. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  865. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  866. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  867. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  868. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  869. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  870. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  871. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  872. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  873. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  874. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  875. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  876. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  877. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  878. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  881. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  884. ];
  885. //dsei
  886. U.MD.D.I.dseiAdminDeskIcon = [
  887. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  888. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  889. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  890. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  896. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  897. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  898. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  899. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  900. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  901. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  902. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  903. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  904. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  905. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  906. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  907. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  908. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  909. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  910. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  911. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  912. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  913. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  914. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  915. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  916. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  917. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  918. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  919. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  920. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  921. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  922. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  923. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  924. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  928. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  930. ];
  931. //dsei
  932. U.MD.D.I.dseiStudentDeskIcon = [
  933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. ];
  940. //未来教育基地
  941. U.MD.D.I.szjkyTeacherDeskIcon = [
  942. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  943. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  944. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  945. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  946. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  947. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  948. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  949. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  950. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  951. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  952. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  953. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  954. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  955. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  959. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  960. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  961. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  962. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  963. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  964. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  965. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  968. ];
  969. //未来教育基地
  970. U.MD.D.I.szjkyAdminDeskIcon = [
  971. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  972. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  975. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  976. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  977. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  978. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  979. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  980. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  981. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  982. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  983. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  984. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  988. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  989. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  990. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  991. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  993. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  994. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  995. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  996. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  997. ];
  998. //未来教育基地
  999. U.MD.D.I.szjkyStudentDeskIcon = [
  1000. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1001. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1002. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1005. ];
  1006. //成华教育局
  1007. U.MD.D.I.chjyjTeacherDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjAdminDeskIcon = [
  1025. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1026. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1030. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //成华教育局chjyj
  1042. U.MD.D.I.chjyjStudentDeskIcon = [
  1043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourse", "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. ];
  1048. //tpc
  1049. U.MD.D.I.tpcStudentDeskIcon = [
  1050. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. ];
  1055. //tpc
  1056. U.MD.D.I.tpcTeacherDeskIcon = [
  1057. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1063. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1064. ];
  1065. //tpc
  1066. U.MD.D.I.tpcAdminDeskIcon = [
  1067. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1068. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1069. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1070. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //THU-IOE
  1076. U.MD.D.I.thuioeTeacherDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1080. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1081. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1082. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1083. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1084. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1087. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1088. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1089. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1090. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1091. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1092. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1093. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1094. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1095. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1096. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1097. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1098. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1099. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1100. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1101. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1102. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1103. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1104. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1105. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1106. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1107. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1108. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1109. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1110. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //THU-IOE
  1118. U.MD.D.I.thuioeStudentDeskIcon = [
  1119. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylTeacherDeskIcon = [
  1126. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1127. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1129. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1130. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1133. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1139. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1142. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1143. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1145. ];
  1146. //jccssyl
  1147. U.MD.D.I.jccssylStudentDeskIcon = [
  1148. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1149. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1150. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleTeacherDeskIcon = [
  1155. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1156. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1158. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1159. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1162. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1167. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1168. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1171. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1172. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1173. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1174. ];
  1175. //cale
  1176. U.MD.D.I.caleStudentDeskIcon = [
  1177. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1178. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1179. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1180. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1181. ];
  1182. //lqwmsgzs
  1183. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1184. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1185. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1187. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1188. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1189. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1194. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1195. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1196. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1197. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1198. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1199. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1200. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1201. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1204. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1205. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1206. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1207. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1208. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1209. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1210. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1211. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1212. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1213. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1214. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1215. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1216. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1217. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1221. ];
  1222. //lqwmsgzs
  1223. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1237. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. ];
  1245. //盐田区幼儿园
  1246. U.MD.D.I.ytyStudentDeskIcon = [
  1247. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1249. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiAdminDeskIcon = [
  1279. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiStudentDeskIcon = [
  1305. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizteacherDeskIcon = [
  1312. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1313. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1315. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1316. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1317. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1318. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1319. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1320. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1321. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1322. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1323. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1324. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1325. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1329. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1331. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1332. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1333. ];
  1334. //cocobiz
  1335. U.MD.D.I.cocobizStudentDeskIcon = [
  1336. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1337. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1338. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1339. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1345. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1346. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1348. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1352. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1356. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1357. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1358. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1365. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1366. ];
  1367. //xxzjky
  1368. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1369. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxTeacherDeskIcon = [
  1378. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1379. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1380. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1381. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1385. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1386. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1387. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1388. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1395. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1396. ];
  1397. //nsfx
  1398. U.MD.D.I.nsfxStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaTeacherDeskIcon = [
  1406. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1409. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1410. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1413. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1416. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1417. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1419. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1420. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1421. ];
  1422. //stia
  1423. U.MD.D.I.stiaStudentDeskIcon = [
  1424. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. ];
  1429. //szdjg
  1430. U.MD.D.I.szdjgTeacherDeskIcon = [
  1431. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1432. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. ];
  1434. //szdjg
  1435. U.MD.D.I.szdjgStudentDeskIcon = [
  1436. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1451. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1452. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1453. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1454. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1455. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1458. ];
  1459. //010607
  1460. U.MD.D.I.x010607StudentDeskIcon = [
  1461. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608TeacherDeskIcon = [
  1468. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1469. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1471. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1472. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1475. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1476. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1477. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1478. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1479. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1480. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1481. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1482. ];
  1483. //010608
  1484. U.MD.D.I.x010608StudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //xhly
  1491. U.MD.D.I.xhlyTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. ];
  1494. //010608
  1495. U.MD.D.I.xhlyStudentDeskIcon = [
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSteacherDeskIcon = [
  1500. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. ];
  1512. //北师大
  1513. U.MD.D.I.BSDNSstudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1536. ];
  1537. //CUHK_EDU
  1538. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //010503
  1545. U.MD.D.I.x010503TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1556. ];
  1557. //010503
  1558. U.MD.D.I.x010503StudentDeskIcon = [
  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. //SPROUT Lab
  1565. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  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. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1569. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1570. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1573. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1575. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1576. ];
  1577. //SPROUT Lab
  1578. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1579. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010204
  1585. U.MD.D.I.x010204TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. ];
  1589. //010204
  1590. U.MD.D.I.x010204StudentDeskIcon = [
  1591. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //trail
  1597. U.MD.D.I.trailTeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1601. ];
  1602. //trail
  1603. U.MD.D.I.trailStudentDeskIcon = [
  1604. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. ];
  1609. //010504
  1610. U.MD.D.I.x010504TeacherDeskIcon = [
  1611. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1612. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1614. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1615. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1616. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1617. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1621. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1622. ];
  1623. //010504
  1624. U.MD.D.I.x010504StudentDeskIcon = [
  1625. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. ];
  1630. //010505
  1631. U.MD.D.I.x010505TeacherDeskIcon = [
  1632. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1633. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1635. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1641. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1642. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1643. ];
  1644. //010505
  1645. U.MD.D.I.x010505StudentDeskIcon = [
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //SCNUET
  1652. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1658. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1659. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1660. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1661. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1662. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1663. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1664. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1665. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1666. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1667. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1670. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1671. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1672. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1673. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1674. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1675. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1676. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1677. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1678. ];
  1679. //SCNUET
  1680. U.MD.D.I.SCNUETAdminDeskIcon = [
  1681. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1682. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1686. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1687. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1688. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1689. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1690. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1691. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1692. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1693. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1694. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1695. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1698. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1699. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1700. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1701. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1702. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1703. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1704. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1705. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1706. ];
  1707. //SCNUET
  1708. U.MD.D.I.SCNUETStudentDeskIcon = [
  1709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. ];
  1714. //x020201
  1715. U.MD.D.I.x020201TeacherDeskIcon = [
  1716. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1717. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1723. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1730. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1732. ];
  1733. //x020201
  1734. U.MD.D.I.x020201AdminDeskIcon = [
  1735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1740. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1747. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1750. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1751. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1752. ];
  1753. //020201
  1754. U.MD.D.I.x020201StudentDeskIcon = [
  1755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1759. ];
  1760. //010611
  1761. U.MD.D.I.x010611TeacherDeskIcon = [
  1762. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1763. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1767. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. ];
  1772. //010611
  1773. U.MD.D.I.x010611StudentDeskIcon = [
  1774. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1775. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1776. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. ];
  1779. //010612
  1780. U.MD.D.I.x010612TeacherDeskIcon = [
  1781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1784. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1785. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1786. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1791. ];
  1792. //010612
  1793. U.MD.D.I.x010612StudentDeskIcon = [
  1794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1796. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. ];
  1799. //tianyuan
  1800. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1801. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1802. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1803. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1804. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1810. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1811. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1812. ];
  1813. //010611
  1814. U.MD.D.I.tianyuanStudentDeskIcon = [
  1815. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1817. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. ];
  1820. //320101
  1821. U.MD.D.I.x320101TeacherDeskIcon = [
  1822. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1823. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1825. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1828. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1829. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1830. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1831. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1832. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1833. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1834. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1835. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1836. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1837. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1838. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1839. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1842. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1843. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1844. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1845. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1846. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1847. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1848. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1849. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1850. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1851. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1852. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1853. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1854. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1856. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //320101
  1862. U.MD.D.I.x320101StudentDeskIcon = [
  1863. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //szsy
  1869. U.MD.D.I.szsyTeacherDeskIcon = [
  1870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1877. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1884. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1886. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1887. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1888. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1889. ];
  1890. //szsy
  1891. U.MD.D.I.szsyStudentDeskIcon = [
  1892. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1895. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1896. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1897. ];
  1898. //010404
  1899. U.MD.D.I.x010404TeacherDeskIcon = [
  1900. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1901. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1902. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1903. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1904. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1905. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1906. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1908. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1909. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1910. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1911. ];
  1912. //010404
  1913. U.MD.D.I.x010404StudentDeskIcon = [
  1914. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1915. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1917. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1918. ];
  1919. //#region 桌面初始化a
  1920. /**
  1921. * 初始化桌面的起始函数
  1922. *
  1923. */
  1924. U.MD.D.I.init = function () {
  1925. if ($("#U_MD_D_K")[0]) {
  1926. //初始化桌面图标
  1927. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1928. // var clickUrl = ':12588/requestIp.php';
  1929. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1930. // U.MD.D.I.Ip = data;
  1931. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1932. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1933. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1934. // })
  1935. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1936. // })
  1937. }
  1938. }
  1939. /**
  1940. * 模式切换
  1941. *
  1942. */
  1943. U.MD.D.I.ModeCheck = function (type) {
  1944. if (US.Config.type == type) {
  1945. return
  1946. }
  1947. US.Config.type = type
  1948. $('.U_PBL_Check .active')[0].className = ''
  1949. if (type == 1) {
  1950. $('.U_PBL_Check div')[0].className = 'active'
  1951. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1952. } else {
  1953. $('.U_PBL_Check div')[1].className = 'active'
  1954. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1955. }
  1956. //初始化桌面图标
  1957. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1958. if (type == 2) {
  1959. U.MD.D.I.openApplication("project")
  1960. }
  1961. }
  1962. /**
  1963. * 隐藏任务栏
  1964. *
  1965. * @param {element} 桌面元素
  1966. */
  1967. U.MD.D.I.hiddenTaskbar = function (el) {
  1968. //任务栏位置变小
  1969. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1970. //桌面的位置变大
  1971. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1972. }
  1973. /**
  1974. * 隐藏任务栏
  1975. *
  1976. * @param {element} 桌面元素
  1977. */
  1978. U.MD.D.I.hiddenTaskbarout = function (el) {
  1979. //任务栏位置变小
  1980. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1981. //任务栏位置变化
  1982. U.selectEl(el).css({ "bottom": "-60px" });
  1983. //桌面的位置变大
  1984. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1985. }
  1986. }
  1987. /**
  1988. * 初始化打印桌面图标
  1989. *
  1990. * @param {element} 桌面元素
  1991. */
  1992. U.MD.D.I.initDesktopIcons = function (el, type) {
  1993. var i, //用于循环
  1994. _content, //桌面图标元素
  1995. _iconcontent, //桌面图标元素
  1996. _frag = $$("frag"), //定义一个碎片元素
  1997. _type = US.userInfo.type,
  1998. _org = US.userInfo.org,
  1999. _oid = US.userInfo.organizeid,
  2000. _role = US.userInfo.role,
  2001. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2002. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2003. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2004. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2005. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2006. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2007. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2008. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2009. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2010. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2011. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2012. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2013. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2014. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2015. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2016. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2017. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2018. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2019. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2020. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2021. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2022. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2023. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2024. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2025. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2026. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2027. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2028. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2029. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2030. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2031. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2032. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2033. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2034. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2035. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2036. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2037. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2038. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2039. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2040. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2041. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2042. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2043. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2044. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2045. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2046. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2047. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2048. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2049. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2050. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2051. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2052. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2053. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2054. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2055. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2056. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2057. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2058. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2059. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2060. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2061. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2062. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2063. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2064. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2065. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2066. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2067. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2068. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2069. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2070. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2071. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2072. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2073. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2074. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2075. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2076. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2077. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2078. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2079. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2080. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2081. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2082. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2083. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2084. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2085. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2086. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2087. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2088. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2089. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2090. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2091. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2092. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2093. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2094. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2095. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2096. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2097. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2098. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2099. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2100. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2101. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2102. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2103. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2104. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2105. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2106. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2107. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2108. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2109. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2110. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2111. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2112. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2113. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2114. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2115. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2116. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2117. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2118. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2119. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2120. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2121. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2122. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2123. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926'];
  2124. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2125. //清楚桌面图标
  2126. el.innerHTML = "";
  2127. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2128. _teacherDesktopIconInfo.push(
  2129. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2130. { "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)" } },
  2131. )
  2132. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2133. }
  2134. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2135. _teacherDesktopIconInfo.push(
  2136. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2140. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2141. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2142. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2143. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2144. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2145. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2146. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2147. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2148. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2149. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2150. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2151. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2152. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2153. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2154. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2155. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2156. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2157. )
  2158. }
  2159. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2160. _teacherDesktopIconInfo.push(
  2161. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2162. )
  2163. }
  2164. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2165. _nsfxTeacherDeskIconInfo.push(
  2166. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2167. )
  2168. }
  2169. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2170. // _teacherDesktopIconInfo.push(
  2171. // )
  2172. // }
  2173. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2174. _teacherDesktopIconInfo.push(
  2175. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2176. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2177. )
  2178. }
  2179. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2180. _teacherDesktopIconInfo.push(
  2181. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2183. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2184. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2185. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2186. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2187. )
  2188. _studentDesktopIconInfo.push(
  2189. )
  2190. }
  2191. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2192. _teacherDesktopIconInfo.push(
  2193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2194. )
  2195. _studentDesktopIconInfo.push(
  2196. )
  2197. }
  2198. //010606 组织
  2199. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2200. _teacherDesktopIconInfo.push(
  2201. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2202. )
  2203. _studentDesktopIconInfo.push(
  2204. )
  2205. }
  2206. //麒麟二中 和 民新小学
  2207. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2208. _teacherDesktopIconInfo.push(
  2209. )
  2210. }
  2211. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2212. _teacherDesktopIconInfo.push(
  2213. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2214. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2215. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2216. )
  2217. }
  2218. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2219. _hkTeacherDeskIconInfo.push(
  2220. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2221. )
  2222. }
  2223. //北师大附中(010601)
  2224. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2225. // _teacherDesktopIconInfo.push(
  2226. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2227. // )
  2228. // _studentDesktopIconInfo.push(
  2229. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2230. // )
  2231. // }
  2232. //樂善堂余近卿中學
  2233. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2234. _teacherDesktopIconInfo.push(
  2235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2236. )
  2237. }
  2238. // Education Artificial Intelligence
  2239. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2240. _teacherDesktopIconInfo.push(
  2241. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2242. )
  2243. }
  2244. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2245. _teacherDesktopIconInfo.push(
  2246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. )
  2248. }
  2249. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2250. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2251. _teacherDesktopIconInfo.push(
  2252. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2253. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2254. )
  2255. }
  2256. //麒麟二中
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2258. _studentDesktopIconInfo.push(
  2259. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2260. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2261. )
  2262. }
  2263. //万科双语
  2264. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2265. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2266. if (el.Name == '项目管理') {
  2267. el.Name = 'PBL项目'
  2268. }
  2269. return el
  2270. })
  2271. _studentDesktopIconInfo3.push(
  2272. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2273. )
  2274. }
  2275. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2276. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2277. return el.Name != '魔盒识字' && el.Name != '24点'
  2278. })
  2279. }
  2280. 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) {
  2281. _studentDesktopIconInfo.push(
  2282. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2283. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2284. )
  2285. }
  2286. //循环创建桌面图标
  2287. if (type == 1) {
  2288. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2289. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_studentDesktopIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_studentDesktopIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2306. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_hkZJLSStudentDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2321. } //
  2322. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2323. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_ytyStudentDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_ytyStudentDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2338. } //
  2339. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2340. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_jccssylStudentDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_jccssylStudentDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2357. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2358. _content = $$("div", {
  2359. className: "U_MD_D_KO",
  2360. "onmousedown": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_scnuaiStudentDeskIconInfo[i]]),
  2364. "onclick": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_scnuaiStudentDeskIconInfo[i]])
  2368. }, _frag); //
  2369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2372. }
  2373. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2374. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_caleStudentDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_caleStudentDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2391. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_thuioeStudentDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_thuioeStudentDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2408. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2409. _content = $$("div", {
  2410. className: "U_MD_D_KO",
  2411. "onmousedown": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_tpcStudentDeskIconInfo[i]]),
  2415. "onclick": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_tpcStudentDeskIconInfo[i]])
  2419. }, _frag); //
  2420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2423. } //
  2424. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2425. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_chjyjStudentDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_chjyjStudentDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2442. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szjkyStudentDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_szjkyStudentDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2459. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2460. _content = $$("div", {
  2461. className: "U_MD_D_KO",
  2462. "onmousedown": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x020201StudentDeskIconInfo[i]]),
  2466. "onclick": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x020201StudentDeskIconInfo[i]])
  2470. }, _frag); //
  2471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2474. }
  2475. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2476. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2477. _content = $$("div", {
  2478. className: "U_MD_D_KO",
  2479. "onmousedown": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_SCNUETStudentDeskIconInfo[i]]),
  2483. "onclick": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_SCNUETStudentDeskIconInfo[i]])
  2487. }, _frag); //
  2488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2491. }
  2492. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2493. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2494. _content = $$("div", {
  2495. className: "U_MD_D_KO",
  2496. "onmousedown": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_dseiStudentDeskIconInfo[i]]),
  2500. "onclick": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_dseiStudentDeskIconInfo[i]])
  2504. }, _frag); //
  2505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2508. }
  2509. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2510. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2511. _content = $$("div", {
  2512. className: "U_MD_D_KO",
  2513. "onmousedown": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2517. "onclick": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2521. }, _frag); //
  2522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2525. }
  2526. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2527. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2528. _content = $$("div", {
  2529. className: "U_MD_D_KO",
  2530. "onmousedown": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_nsfxStudentDeskIconInfo[i]]),
  2534. "onclick": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_nsfxStudentDeskIconInfo[i]])
  2538. }, _frag); //
  2539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2542. }
  2543. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2544. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2545. _content = $$("div", {
  2546. className: "U_MD_D_KO",
  2547. "onmousedown": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_stiaStudentDeskIconInfo[i]]),
  2551. "onclick": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_stiaStudentDeskIconInfo[i]])
  2555. }, _frag); //
  2556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2559. }
  2560. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2561. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2562. _content = $$("div", {
  2563. className: "U_MD_D_KO",
  2564. "onmousedown": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_szdjgStudentDeskIconInfo[i]]),
  2568. "onclick": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szdjgStudentDeskIconInfo[i]])
  2572. }, _frag); //
  2573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2576. }
  2577. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2578. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2579. _content = $$("div", {
  2580. className: "U_MD_D_KO",
  2581. "onmousedown": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_x010607StudentDeskIconInfo[i]]),
  2585. "onclick": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_x010607StudentDeskIconInfo[i]])
  2589. }, _frag); //
  2590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2593. }
  2594. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2595. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_xhlyStudentDeskIconInfo[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_xhlyStudentDeskIconInfo[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2610. }
  2611. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2612. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2613. _content = $$("div", {
  2614. className: "U_MD_D_KO",
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2627. }
  2628. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2629. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_x010503StudentDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_x010503StudentDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2644. }
  2645. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2646. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_x010504StudentDeskIconInfo[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_x010504StudentDeskIconInfo[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2661. }
  2662. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2663. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2664. _content = $$("div", {
  2665. className: "U_MD_D_KO",
  2666. "onmousedown": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_x010505StudentDeskIconInfo[i]]),
  2670. "onclick": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_x010505StudentDeskIconInfo[i]])
  2674. }, _frag); //
  2675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2678. }
  2679. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2680. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_x010404StudentDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_x010404StudentDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2697. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_x010204StudentDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_x010204StudentDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2714. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2715. _content = $$("div", {
  2716. className: "U_MD_D_KO",
  2717. "onmousedown": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_x320101StudentDeskIconInfo[i]]),
  2721. "onclick": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_x320101StudentDeskIconInfo[i]])
  2725. }, _frag); //
  2726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2729. }
  2730. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2731. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2732. _content = $$("div", {
  2733. className: "U_MD_D_KO",
  2734. "onmousedown": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_trailStudentDeskIconInfo[i]]),
  2738. "onclick": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_trailStudentDeskIconInfo[i]])
  2742. }, _frag); //
  2743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2746. }
  2747. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2748. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2749. _content = $$("div", {
  2750. className: "U_MD_D_KO",
  2751. "onmousedown": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2755. "onclick": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2759. }, _frag); //
  2760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2763. }
  2764. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2765. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2766. _content = $$("div", {
  2767. className: "U_MD_D_KO",
  2768. "onmousedown": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_szsyStudentDeskIconInfo[i]]),
  2772. "onclick": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_szsyStudentDeskIconInfo[i]])
  2776. }, _frag); //
  2777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2780. }
  2781. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2782. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2783. _content = $$("div", {
  2784. className: "U_MD_D_KO",
  2785. "onmousedown": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_x010608StudentDeskIconInfo[i]]),
  2789. "onclick": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_x010608StudentDeskIconInfo[i]])
  2793. }, _frag); //
  2794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2797. }
  2798. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2799. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2800. _content = $$("div", {
  2801. className: "U_MD_D_KO",
  2802. "onmousedown": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_x010611StudentDeskIconInfo[i]]),
  2806. "onclick": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_x010611StudentDeskIconInfo[i]])
  2810. }, _frag); //
  2811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2814. }
  2815. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2816. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_x010612StudentDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_x010612StudentDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2833. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_tianyuantudentDeskIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_tianyuantudentDeskIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2850. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. "onmousedown": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_siesStudentDeskIconInfo[i]]),
  2857. "onclick": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_siesStudentDeskIconInfo[i]])
  2861. }, _frag); //
  2862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2865. }
  2866. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2867. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_guzmsStudentDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_guzmsStudentDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2884. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_hkStudentDeskIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_hkStudentDeskIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2901. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2902. _content = $$("div", {
  2903. className: "U_MD_D_KO",
  2904. "onmousedown": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_hkaceStudentDeskIconInfo[i]]),
  2908. "onclick": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_hkaceStudentDeskIconInfo[i]])
  2912. }, _frag); //
  2913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2916. }
  2917. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2918. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_BSDNSstudentDesktopIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2935. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_cocobizStudentDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_cocobizStudentDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2952. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_xxzjkyStudentDeskIconInfo[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2967. }
  2968. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2969. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2970. _content = $$("div", {
  2971. className: "U_MD_D_KO",
  2972. "onmousedown": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_studentDesktopIconInfo[i]]),
  2976. "onclick": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_studentDesktopIconInfo[i]])
  2980. }, _frag); //
  2981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2984. }
  2985. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2986. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2987. _content = $$("div", {
  2988. className: "U_MD_D_KO",
  2989. "onmousedown": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_tcStudentDeskIconInfo[i]]),
  2993. "onclick": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_tcStudentDeskIconInfo[i]])
  2997. }, _frag); //
  2998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3001. }
  3002. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3003. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  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. }, [_szscStudentDeskIconInfo[i]]),
  3010. "onclick": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_szscStudentDeskIconInfo[i]])
  3014. }, _frag); //
  3015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3018. }
  3019. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3020. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_studentDesktopIconInfo3[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_studentDesktopIconInfo3[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3035. }
  3036. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3037. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_studentDesktopIconInfo2[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_studentDesktopIconInfo2[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3054. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3055. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_wanketeacherDesktopIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_wanketeacherDesktopIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3074. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_wankeAdminDesktopIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_wankeAdminDesktopIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3091. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3093. continue
  3094. }
  3095. _content = $$("div", {
  3096. className: "U_MD_D_KO",
  3097. "onmousedown": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_scnuaiTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3111. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3112. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3113. continue
  3114. }
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_BSDNSteacherDesktopIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3129. }
  3130. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3131. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_scnuaiAdminDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_scnuaiAdminDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3148. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3149. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_jccssylTeacherDeskIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_jccssylTeacherDeskIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3168. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3169. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3170. continue
  3171. }
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_caleTeacherDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_caleTeacherDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3188. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_tpcOrganizerDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_tpcOrganizerDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3205. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_tpcTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_tpcTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3225. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3226. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3227. continue
  3228. }
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_teacherDesktopIconInfo2[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_teacherDesktopIconInfo2[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3243. }
  3244. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3245. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_thuioeTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_thuioeTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. }
  3264. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3265. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_lotechTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_lotechTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }//
  3284. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3285. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3305. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_siesTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_siesTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3325. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_guzmsTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_guzmsTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3345. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_longhuaTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_longhuaTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3365. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3366. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3367. continue
  3368. }
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_ytyTeacherDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_ytyTeacherDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3385. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_yunhaiTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. } //_hkStudentDeskIconInfo
  3404. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3405. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3406. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3425. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_ricohTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_ricohTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3445. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_hkTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_hkTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3465. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3466. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_hkaceTeacherDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_hkaceTeacherDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3485. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_cocobizTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_cocobizTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3505. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3506. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3525. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_gdjgAdminDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖动图标即打开了桌面应用
  3534. U.MD.D.click(this, obj);
  3535. }, [_gdjgAdminDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3542. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3543. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_gdjgTeacherDeskIconInfo[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖动图标即打开了桌面应用
  3554. U.MD.D.click(this, obj);
  3555. }, [_gdjgTeacherDeskIconInfo[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3562. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3563. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3564. continue
  3565. }
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_szherTeacherDeskIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_szherTeacherDeskIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3582. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_heyuannAdminDeskIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_heyuannAdminDeskIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3599. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3600. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_heyuanTeacherDeskIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_heyuanTeacherDeskIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3617. } //
  3618. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3619. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3620. _content = $$("div", {
  3621. className: "U_MD_D_KO",
  3622. "onmousedown": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_dseiAdminDeskIconInfo[i]]),
  3626. "onclick": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_dseiAdminDeskIconInfo[i]])
  3630. }, _frag); //
  3631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3634. }
  3635. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3636. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3637. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3638. continue
  3639. }
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. "onmousedown": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_dseiTeacherDeskIconInfo[i]]),
  3646. "onclick": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_dseiTeacherDeskIconInfo[i]])
  3650. }, _frag); //
  3651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3654. } //
  3655. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3656. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_chjyjAdminDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_chjyjAdminDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3671. }//
  3672. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3673. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _chjyjTeacherDeskIconInfo[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. }, [_chjyjTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_chjyjTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3693. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_szjkyAdminDeskIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_szjkyAdminDeskIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3708. }//
  3709. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3710. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3711. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_szjkyTeacherDeskIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_szjkyTeacherDeskIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3730. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_x020201AdminDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_x020201AdminDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3745. }//
  3746. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3747. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_x020201TeacherDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_x020201TeacherDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3767. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_SCNUETAdminDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_SCNUETAdminDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3782. }//
  3783. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3784. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_SCNUETTeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3804. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_futianAdminDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_futianAdminDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3821. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_futianTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_futianTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3841. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3842. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3843. continue
  3844. }
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_MingdeTeacherDeskIcon[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_MingdeTeacherDeskIcon[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3861. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_lhsAdminDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_lhsAdminDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3878. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_lhsteacherDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_lhsteacherDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3898. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3899. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3900. continue
  3901. }
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_zhoujiateacherDesktopIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3918. for (i = 0; i < _hanDeskIcon.length; i++) {
  3919. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_hanDeskIcon[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_hanDeskIcon[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3938. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3939. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_orgStemDeskIcon[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_orgStemDeskIcon[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3958. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3959. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_szulsDeskIcon[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_szulsDeskIcon[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3978. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3979. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_orgDesktopIconInfo[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_orgDesktopIconInfo[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3998. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3999. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_schoolDesktopIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_schoolDesktopIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4018. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4019. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_GMteacherDesktopIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_GMteacherDesktopIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4038. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4039. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_SONGteacherDesktopIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_SONGteacherDesktopIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4058. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_GMstudentDesktopIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_GMstudentDesktopIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4075. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_tcTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_tcTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4095. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4097. continue
  4098. }
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_tcOrganizerDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_tcOrganizerDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4115. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_szscTeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_szscTeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4135. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_szscOrganizerDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_szscOrganizerDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4155. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_nsfxTeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_nsfxTeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4175. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖动图标即打开了桌面应用
  4183. U.MD.D.click(this, obj);
  4184. }, [_stiaTeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_stiaTeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4195. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_szdjgTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_szdjgTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4215. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_x010607TeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_x010607TeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4235. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_xhlyTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_xhlyTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4255. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖动图标即打开了桌面应用
  4263. U.MD.D.click(this, obj);
  4264. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4275. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖动图标即打开了桌面应用
  4283. U.MD.D.click(this, obj);
  4284. }, [_x010503TeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_x010503TeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4295. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖动图标即打开了桌面应用
  4303. U.MD.D.click(this, obj);
  4304. }, [_x010504TeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_x010504TeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4315. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4316. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖动图标即打开了桌面应用
  4323. U.MD.D.click(this, obj);
  4324. }, [_x010505TeacherDeskIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010505TeacherDeskIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4335. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4336. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4337. continue
  4338. }
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_x010404TeacherDeskIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_x010404TeacherDeskIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4355. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_x010204TeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_x010204TeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4375. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4376. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_x320101TeacherDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x320101TeacherDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4395. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4396. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_trailTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_trailTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4415. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4416. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4435. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4436. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_szsyTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_szsyTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4455. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4456. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_x010608TeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010608TeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4475. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4476. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_x010611TeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x010611TeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4495. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4496. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_x010612TeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_x010612TeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4515. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4516. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_tianyuanTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else {
  4535. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4536. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_teacherDesktopIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_teacherDesktopIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. }
  4555. } else {
  4556. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4557. _content = $$("div", {
  4558. className: "U_MD_D_KO",
  4559. style: { 'width': '124px', 'height': '145px' },
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_easyDesktopIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_easyDesktopIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4572. }
  4573. }
  4574. if (type == 1) {
  4575. //加载好后给图标定位
  4576. U.MD.D.iconPostion($(_frag).Child());
  4577. } else {
  4578. //加载好后给图标定位
  4579. U.MD.D.iconPostion2($(_frag).Child());
  4580. }
  4581. //把图标加载到页面
  4582. el.appendChild(_frag);
  4583. }
  4584. /**
  4585. * 显示任务栏
  4586. *
  4587. * @param {element} 桌面元素
  4588. */
  4589. U.MD.D.I.displayTaskbar = function (el) {
  4590. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4591. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4592. //任务栏位置变化
  4593. U.selectEl(el).css({ "bottom": "0px" });
  4594. //桌面位置变话
  4595. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4596. }
  4597. }
  4598. //#region 桌面图标拖动逻辑
  4599. /**
  4600. * 桌面排列图标
  4601. *
  4602. * @param {element} 桌面元素
  4603. * @param {object} 上下相距的距离
  4604. * @param {object} 左右相距的距离
  4605. * @return {object} 命名空间
  4606. */
  4607. U.MD.D.iconPostion = function (childs, top, left) {
  4608. var i; //用于循环处理
  4609. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4610. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4611. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4612. for (i = 0; i < childs.length; i++) {
  4613. //如果竖排top超过了范围处理
  4614. if (top + 95 > US.height - 10) {
  4615. //left超过了页面范围处理,则向上重叠打印处理
  4616. if ((left + 180) > US.width) {
  4617. top -= 110;
  4618. left -= 90;
  4619. }
  4620. //没有超过范围,那么left+90添加到下一个竖排打印
  4621. else {
  4622. left += 90;
  4623. top = 15;
  4624. };
  4625. }
  4626. //给图标的位置赋值
  4627. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4628. if (i < childs.length - 1) {
  4629. //页面图标每次向下加95
  4630. top += 95;
  4631. }
  4632. }
  4633. //返回最后调用的图标的位置
  4634. return [top, left];
  4635. }
  4636. /**
  4637. * 桌面排列图标
  4638. *
  4639. * @param {element} 桌面元素
  4640. * @param {object} 上下相距的距离
  4641. * @param {object} 左右相距的距离
  4642. * @return {object} 命名空间
  4643. */
  4644. U.MD.D.iconPostion2 = function (childs, top, left) {
  4645. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4646. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4647. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4648. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4649. for (i = 0; i < childs.length; i++) {
  4650. //如果竖排top超过了范围处理
  4651. if (left + 150 > US.width - 10) {
  4652. //left超过了页面范围处理,则向上重叠打印处理
  4653. if ((top + 180) > US.Height) {
  4654. top -= 150;
  4655. left -= 150;
  4656. }
  4657. //没有超过范围,那么left+90添加到下一个竖排打印
  4658. else {
  4659. top += 150;
  4660. left = ol;
  4661. };
  4662. }
  4663. //给图标的位置赋值
  4664. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4665. if (i < childs.length - 1) {
  4666. //页面图标每次向下加95
  4667. left += 150;
  4668. }
  4669. }
  4670. //返回最后调用的图标的位置
  4671. return [top, left];
  4672. }
  4673. /**
  4674. * 桌面点击事件逻辑
  4675. *
  4676. * @param {element} 桌面元素
  4677. * @param {object} 上下相距的距离
  4678. * @param {object} 左右相距的距离
  4679. * @return {object} 命名空间
  4680. */
  4681. U.MD.D.click = function (el, obj) {
  4682. var _buttonnumber = event.button; //点击的按钮的事件值
  4683. var _userinfo = US.userInfo;
  4684. U.UF.EV.stopBubble(); //阻止向上冒泡
  4685. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4686. if (_buttonnumber < 2) {
  4687. //如果是click事件的处理
  4688. if (event.type == "click") {
  4689. //如果元素在mousemove事件中没有移动则出发click事件
  4690. if (!U.MD.D.I.IsDrag) {
  4691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4692. U.alert("请先登录您的账号!");
  4693. setTimeout(() => {
  4694. U.MD.U.L.login();
  4695. }, 2000);
  4696. } else {
  4697. //打开应用处理
  4698. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4699. }
  4700. }
  4701. }
  4702. //如果是mouse事件的处理
  4703. else {
  4704. if (US.Config.type == '1') {
  4705. //拖动处理,添加拖动和拖动结束事件
  4706. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4707. }
  4708. }
  4709. U.MD.D.I.IsDrag = false;
  4710. }
  4711. }
  4712. /**
  4713. * 拖动的处理
  4714. *
  4715. */
  4716. U.MD.D.iconMove = function () {
  4717. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4718. U.MD.D.I.IsDrag = true;
  4719. }
  4720. /**
  4721. * 拖动结束后,这里是定位处理,以网状的形式定位
  4722. *
  4723. * @param {element} 拖动的元素
  4724. * @return {object} 命名空间
  4725. */
  4726. U.MD.D.iconUp = function (el) {
  4727. var _top = 15,
  4728. _left = 20,
  4729. _margin,
  4730. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4731. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4732. if (_positioninfo["OT"] > 15) {
  4733. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4734. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4735. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4736. }
  4737. if (_positioninfo["OL"] > 20) {
  4738. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4739. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4740. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4741. }
  4742. //while循环判断么一个重叠的元素
  4743. do {
  4744. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4745. _top = _positioninfo[0] + 95; //得到定位后的top
  4746. _left = _positioninfo[1]; //得到定位后的left
  4747. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4748. }
  4749. /**
  4750. * 判断拖动后图标是否重叠
  4751. *
  4752. * @param {element} 拖动的元素
  4753. * @param {element} 桌面所有的元素
  4754. * @param {array} 拖动元素的位置
  4755. ----------[0] 上 top
  4756. ----------[1] 左 left
  4757. * @return {object} 命名空间
  4758. */
  4759. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4760. //循环所有的图标
  4761. for (var i = 0; i < childs.length; i++) {
  4762. //判断有没有和该图标诶子重叠的元素
  4763. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4764. return childs[i]; //如果有返回
  4765. }
  4766. }
  4767. }
  4768. //#endregion
  4769. //#endregion
  4770. //#region 桌面应用
  4771. /**
  4772. * 打开应用
  4773. *
  4774. * @param {string} 类型
  4775. -----------------Disk 网盘系统
  4776. -----------------PDisk 学习系统网盘
  4777. -----------------Poto 图片
  4778. -----------------Video 视频
  4779. -----------------Music 音乐
  4780. -----------------Word word
  4781. -----------------Excel excel
  4782. -----------------Txt 记事本
  4783. -----------------PB 学习系统
  4784. -----------------Blog 朋友圈系统
  4785. -----------------FTP ftp系统
  4786. -----------------Group 好友群
  4787. -----------------SY 首页系统
  4788. -----------------Set 个人设置
  4789. -----------------XSet 系统设置
  4790. -----------------App 我们所有的app
  4791. -----------------BC c.1473.cn 平台
  4792. -----------------CWeb d.1473.cn 变成平台
  4793. -----------------其他的外联系统 我们统一用iframe打开
  4794. * @param {array} 类型
  4795. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4796. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4797. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4798. 如果第一个参数为其他,则无第二个参数
  4799. * @returns {array}
  4800. */
  4801. window.addEventListener('message', function (e) { // 监听 message 事件
  4802. // alert(e.data.type);
  4803. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4804. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4805. //3是展示全部阶段 2学生 1老师 4专家
  4806. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4807. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4808. //3是展示全部阶段 2学生 1老师 4专家
  4809. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4810. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4811. //3是展示全部阶段 2学生 1老师 4专家
  4812. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4813. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4814. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4815. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4816. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4817. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4818. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4819. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4820. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4821. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4822. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4823. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4824. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4825. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4826. //3是展示全部阶段 2学生 1老师 4专家
  4827. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4828. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4829. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4830. U.MD.D.I.selectUser();
  4831. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4832. var _formel = document.getElementById("study");
  4833. U.UF.F.windowZooming(_formel);
  4834. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4835. var _formel = document.getElementById("studyDetail");
  4836. U.UF.F.windowZooming(_formel);
  4837. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4838. var _formel = document.getElementById("studyDetail");
  4839. U.UF.F.windowZooming(_formel);
  4840. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4841. var _formel = document.getElementById("studentStudy");
  4842. U.UF.F.windowZooming(_formel);
  4843. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4844. // var _formel = document.getElementById("study");
  4845. //如果最大化了,那么就把他缩小
  4846. // if (_formel.ismaximize) {
  4847. // return;
  4848. // }
  4849. // U.UF.F.windowZooming(_formel);
  4850. // U.UF.F.topWindow(_formel);
  4851. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4852. // var _formel = document.getElementById("studyDetail");
  4853. //如果最大化了,那么就把他缩小
  4854. // if (_formel.ismaximize) {
  4855. // return;
  4856. // }
  4857. // U.UF.F.windowZooming(_formel);
  4858. // U.UF.F.topWindow(_formel);
  4859. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4860. // var _formel = document.getElementById("studentStudy");
  4861. // if (_formel.ismaximize) {
  4862. // return;
  4863. // }
  4864. // U.UF.F.windowZooming(_formel);
  4865. // U.UF.F.topWindow(_formel);
  4866. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4867. var _formel = document.getElementById("study");
  4868. // if (_formel.ismaximize) {
  4869. // return;
  4870. // }
  4871. // U.UF.F.windowZooming(_formel);
  4872. U.UF.F.topWindow(_formel);
  4873. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4874. var _formel = document.getElementById("studentIndex");
  4875. U.UF.F.windowZooming(_formel);
  4876. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4877. var _formel = document.getElementById("studyDetailS");
  4878. U.UF.F.windowZooming(_formel);
  4879. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4880. var _formel = document.getElementById("studioIndex");
  4881. U.UF.F.windowZooming(_formel);
  4882. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4883. var _formel = document.getElementById("studyDetailStudio");
  4884. U.UF.F.windowZooming(_formel);
  4885. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4886. var _formel = document.getElementById("studyDetailStudio");
  4887. U.UF.F.windowZooming(_formel);
  4888. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4889. var _formel = document.getElementById("studyDetailNT");
  4890. U.UF.F.windowZooming(_formel);
  4891. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4892. var _formel = document.getElementById("studyDetailS");
  4893. U.UF.F.windowZooming(_formel);
  4894. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4895. var _formel = document.getElementById("studyDetailS");
  4896. U.UF.F.topWindow(_formel);
  4897. } else if (e.data.tools && e.data.tools == "1") {
  4898. // U.MD.D.I.openApplication("whiteboard")
  4899. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4900. } else if (e.data.tools && e.data.tools == "2") {
  4901. U.MD.D.I.openApplication("note")
  4902. } else if (e.data.tools && e.data.tools == "3") {
  4903. // U.MD.D.I.openApplication("mind")
  4904. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4905. } else if (e.data.tools && e.data.tools == "4") {
  4906. U.MD.D.I.openApplication("investigation")
  4907. } else if (e.data.tools && e.data.tools == "6") {
  4908. // U.MD.D.I.openApplication("doc")
  4909. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4910. } else if (e.data.tools && e.data.tools == "7") {
  4911. // U.MD.D.I.openApplication("mindNetwork")
  4912. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4913. } else if (e.data.tools && e.data.tools == "8") {
  4914. U.MD.D.I.openApplication("library")
  4915. } else if (e.data.tools && e.data.tools == "17") {
  4916. U.MD.D.I.openApplication("stuLibrary")
  4917. } else if (e.data.tools && e.data.tools == "18") {
  4918. U.MD.D.I.openApplication("train")
  4919. } else if (e.data.tools && e.data.tools == "21") {
  4920. U.MD.D.I.openApplication("program")
  4921. } else if (e.data.tools && e.data.tools == "22") {
  4922. U.MD.D.I.openApplication("AIprogram2")
  4923. } else if (e.data.tools && e.data.tools == "23") {
  4924. U.MD.D.I.openApplication("Pythonprogram")
  4925. } else if (e.data.tools && e.data.tools == "24") {
  4926. U.MD.D.I.openApplication("AIprogram")
  4927. } else if (e.data.tools && e.data.tools == "25") {
  4928. U.MD.D.I.openApplication("sys")
  4929. } else if (e.data.tools && e.data.tools == "26") {
  4930. // U.MD.D.I.openApplication("courseDesign")
  4931. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4932. } else if (e.data.tools && e.data.tools == "31") {
  4933. U.MD.D.I.openApplication("netWorkPanel")
  4934. } else if (e.data.tools && e.data.tools == "32") {
  4935. U.MD.D.I.openApplication("codeEdit")
  4936. } else if (e.data.tools && e.data.tools == "57") {
  4937. U.MD.D.I.openApplication("CocoPi")
  4938. } else if (e.data.tools && e.data.tools == "63") {
  4939. U.MD.D.I.openApplication("Wood")
  4940. } else if (e.data.tools && e.data.tools == "58") {
  4941. U.MD.D.I.openApplication("car")
  4942. } else if (e.data.tools && e.data.tools == "59") {
  4943. U.MD.D.I.openApplication("lineSearch")
  4944. } else if (e.data.tools && e.data.tools == "60") {
  4945. U.MD.D.I.openApplication("deepLearning")
  4946. } else if (e.data.tools && e.data.tools == "61") {
  4947. U.MD.D.I.openApplication("allHistory")
  4948. } else if (e.data.tools && e.data.tools == "28") {
  4949. U.MD.D.I.openApplication("translation")
  4950. } else if (e.data.tools && e.data.tools == "37") {
  4951. U.MD.D.I.openApplication("mohe")
  4952. } else if (e.data.tools && e.data.tools == "38") {
  4953. U.MD.D.I.openApplication("24game")
  4954. } else if (e.data.tools && e.data.tools == "39") {
  4955. U.MD.D.I.openApplication("GeoGebra")
  4956. } else if (e.data.tools && e.data.tools == "43") {
  4957. U.MD.D.I.openApplication("studentEvaluate")
  4958. } else if (e.data.tools && e.data.tools == "44") {
  4959. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4960. } else if (e.data.tools && e.data.tools == "46") {
  4961. U.MD.D.I.openApplication("project")
  4962. } else if (e.data.tools && e.data.tools == "71") {
  4963. U.MD.D.I.openApplication("aigptCourse")
  4964. } else if (e.data.tools && e.data.tools == "72") {
  4965. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4966. } else if (e.data.tools && e.data.tools == "1s") {
  4967. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4968. } else if (e.data.tools && e.data.tools == "3s") {
  4969. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4970. } else if (e.data.tools && e.data.tools == "6s") {
  4971. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4972. } else if (e.data.tools && e.data.tools == "1studio") {
  4973. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4974. } else if (e.data.tools && e.data.tools == "3studio") {
  4975. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4976. } else if (e.data.tools && e.data.tools == "6studio") {
  4977. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4978. } else if (e.data.tools && e.data.tools == "3y") {
  4979. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4980. } else if (e.data.tools && e.data.tools == "1y") {
  4981. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4982. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4983. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4984. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4985. U.MD.D.I.openApplication("AIAnalyse")
  4986. } else if (e.data.tools && e.data.tools == "1teacher") {
  4987. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4988. } else if (e.data.tools && e.data.tools == "3teacher") {
  4989. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4990. } else if (e.data.tools && e.data.tools == "7teacher") {
  4991. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4992. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4993. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4994. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4995. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4996. } else if (e.data.tools && e.data.tools == "1E") {
  4997. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4998. } else if (e.data.tools && e.data.tools == "3E") {
  4999. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5000. } else if (e.data.tools && e.data.tools == "57y") {
  5001. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5002. } else if (e.data.tools && e.data.tools == "57u") {
  5003. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5004. } else if (e.data.tools && e.data.tools == "57teacher") {
  5005. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5006. } else if (e.data.tools && e.data.tools == "64") {
  5007. U.MD.D.I.openApplication("AIChat")
  5008. } else if (e.data.tools && e.data.tools == "66") {
  5009. U.MD.D.I.openApplication("formulaEdi")
  5010. } else if (e.data.tools && e.data.tools == "67") {
  5011. U.MD.D.I.openApplication("molStr")
  5012. } else if (e.data.tools && e.data.tools == "68") {
  5013. U.MD.D.I.openApplication("timeAxis")
  5014. } else if (e.data.tools && e.data.tools == "openCourse") {
  5015. let _data = {
  5016. typea: e.data.typea || '',
  5017. typeb: e.data.typeb || '',
  5018. typed: e.data.typed || '',
  5019. }
  5020. U.MD.D.I.openInApplication("index", _data)
  5021. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5022. let _data = {
  5023. classid: e.data.classid || '',
  5024. }
  5025. U.MD.D.I.openInApplication("dataClass", _data)
  5026. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5027. let _data = {
  5028. cid: e.data.cid || '',
  5029. gid: e.data.gid || '',
  5030. }
  5031. U.MD.D.I.openInApplication("opencCscl", _data)
  5032. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5033. U.MD.D.I.openApplication("dataBoardTest")
  5034. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5035. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5036. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5037. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5038. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5039. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5040. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5041. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5042. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5043. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5044. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5045. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5046. }else if (e.data.tools && e.data.tools == "loginSz") {
  5047. U.MD.D.I.openInApplication("loginSz")
  5048. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5049. if($('#classroom_observation_board')[0]){
  5050. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5051. }
  5052. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5053. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5054. if($('#classroom_observation_ob_comment')[0]){
  5055. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5056. }
  5057. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5058. }else if (e.data.tools && e.data.tools == "logout"){
  5059. U.MD.U.LO.logoutSystem()
  5060. }else if (e.data.tools && e.data.tools == "getLogin"){
  5061. let _iframe = $('#UI_Login')[0];
  5062. if (_iframe) {
  5063. var userInfo = US.userInfo;
  5064. var type = 2
  5065. if(userInfo && userInfo.userid){
  5066. type = 1
  5067. }
  5068. _contentWindow = _iframe.contentWindow;
  5069. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5070. }
  5071. }
  5072. });
  5073. U.MD.D.I.selectUser = function () {
  5074. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5075. if (res.value[0].length > 0) {
  5076. US.userInfo = res.value[0][0];
  5077. $(".userName")[0].innerHTML = US.userInfo.username;
  5078. }
  5079. }, [], { "type": "GET", "withCredentials": true });
  5080. }
  5081. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5082. var _userinfo = US.userInfo, //登录用户信息
  5083. _userid = US.userInfo.userid, //登录用户id
  5084. _oid = _userinfo.organizeid,
  5085. _type = US.userInfo.type,
  5086. _org = US.userInfo.org,
  5087. _role = US.userInfo.role,
  5088. _classId = US.userInfo.classid;
  5089. if (_type == 4) {
  5090. tType = 4
  5091. }
  5092. switch (str) {
  5093. case "studyDetailNT": //无终端模式
  5094. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5095. setTimeout(() => {
  5096. U.MD.U.L.login();
  5097. }, 2000);
  5098. } else {
  5099. _formdiv = new U.UF.UI.form(
  5100. "课程详情",
  5101. $$("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 }), {
  5102. "id": "studyDetailNT",
  5103. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. }
  5111. case "studyDetail":
  5112. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5113. setTimeout(() => {
  5114. U.MD.U.L.login();
  5115. }, 2000);
  5116. } else {
  5117. _formdiv = new U.UF.UI.form(
  5118. "课程详情",
  5119. $$("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 }), {
  5120. "id": "studyDetail",
  5121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _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); } }
  5127. break;
  5128. }
  5129. case "studyDetailTrain":
  5130. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5131. setTimeout(() => {
  5132. U.MD.U.L.login();
  5133. }, 2000);
  5134. } else {
  5135. _formdiv = new U.UF.UI.form(
  5136. "培训详情",
  5137. $$("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 }), {
  5138. "id": "studyDetailTrain",
  5139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. }
  5147. case "studyDetailS":
  5148. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5149. setTimeout(() => {
  5150. U.MD.U.L.login();
  5151. }, 2000);
  5152. } else {
  5153. _formdiv = new U.UF.UI.form(
  5154. "项目详情",
  5155. $$("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 }), {
  5156. "id": "studyDetailS",
  5157. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _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); } }
  5163. break;
  5164. }
  5165. case "studyDetailStudio":
  5166. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5167. setTimeout(() => {
  5168. U.MD.U.L.login();
  5169. }, 2000);
  5170. } else {
  5171. _formdiv = new U.UF.UI.form(
  5172. "工作详情",
  5173. $$("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 }), {
  5174. "id": "studyDetailStudio",
  5175. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. }
  5183. case "studyDetailS5":
  5184. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5185. setTimeout(() => {
  5186. U.MD.U.L.login();
  5187. }, 2000);
  5188. } else {
  5189. _formdiv = new U.UF.UI.form(
  5190. "项目详情",
  5191. $$("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 }), {
  5192. "id": "studyDetailS",
  5193. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _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); } }
  5199. break;
  5200. }
  5201. case "studyDetailGM":
  5202. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5203. setTimeout(() => {
  5204. U.MD.U.L.login();
  5205. }, 2000);
  5206. } else {
  5207. _formdiv = new U.UF.UI.form(
  5208. "课程详情",
  5209. $$("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 }), {
  5210. "id": "studyDetail",
  5211. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. }
  5219. case "hanUrl":
  5220. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5221. setTimeout(() => {
  5222. U.MD.U.L.login();
  5223. }, 2000);
  5224. } else {
  5225. _formdiv = new U.UF.UI.form(
  5226. "汉字宫",
  5227. $$("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" }), {
  5228. "id": "hanUrl",
  5229. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _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); } }
  5235. break;
  5236. }
  5237. case "index":
  5238. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5239. setTimeout(() => {
  5240. U.MD.U.L.login();
  5241. }, 2000);
  5242. } else {
  5243. _formdiv = new U.UF.UI.form(
  5244. "课程中心",
  5245. $$("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 }), {
  5246. "id": "study",
  5247. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5253. break;
  5254. }
  5255. case "dataClass":
  5256. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5257. setTimeout(() => {
  5258. U.MD.U.L.login();
  5259. }, 2000);
  5260. } else {
  5261. _formdiv = new U.UF.UI.form(
  5262. "数据报告",
  5263. $$("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 }), {
  5264. "id": "dataClass",
  5265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _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); } }
  5271. break;
  5272. }
  5273. case "opencCscl":
  5274. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5275. setTimeout(() => {
  5276. U.MD.U.L.login();
  5277. }, 2000);
  5278. } else {
  5279. _formdiv = new U.UF.UI.form(
  5280. "协同建构",
  5281. $$("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 }), {
  5282. "id": "futureClass",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. }
  5291. case "openCourseUpdate":
  5292. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5293. setTimeout(() => {
  5294. U.MD.U.L.login();
  5295. }, 2000);
  5296. } else {
  5297. _formdiv = new U.UF.UI.form(
  5298. "课程管理",
  5299. $$("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 }), {
  5300. "id": "openCourseUpdate",
  5301. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. break;
  5307. }
  5308. case "openNewCourseUpdate":
  5309. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5310. setTimeout(() => {
  5311. U.MD.U.L.login();
  5312. }, 2000);
  5313. } else {
  5314. _formdiv = new U.UF.UI.form(
  5315. "课程管理",
  5316. $$("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 }), {
  5317. "id": "openCourseUpdate",
  5318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. break;
  5324. }
  5325. case "openCourseEUpdate":
  5326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5327. setTimeout(() => {
  5328. U.MD.U.L.login();
  5329. }, 2000);
  5330. } else {
  5331. _formdiv = new U.UF.UI.form(
  5332. "课程管理",
  5333. $$("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 }), {
  5334. "id": "openCourseUpdate",
  5335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. break;
  5341. }
  5342. case "openCourseAiUpdate":
  5343. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5344. setTimeout(() => {
  5345. U.MD.U.L.login();
  5346. }, 2000);
  5347. } else {
  5348. _formdiv = new U.UF.UI.form(
  5349. "课程管理",
  5350. $$("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 }), {
  5351. "id": "openCourseUpdate",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. break;
  5358. }
  5359. case "openCourseAiUpdate2":
  5360. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5361. setTimeout(() => {
  5362. U.MD.U.L.login();
  5363. }, 2000);
  5364. } else {
  5365. _formdiv = new U.UF.UI.form(
  5366. "课程管理",
  5367. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5368. "id": "openCourseUpdate",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. break;
  5375. }
  5376. case "openCourseNewUpdate":
  5377. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5378. setTimeout(() => {
  5379. U.MD.U.L.login();
  5380. }, 2000);
  5381. } else {
  5382. _formdiv = new U.UF.UI.form(
  5383. "课程管理",
  5384. $$("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 }), {
  5385. "id": "openCourseUpdate",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. break;
  5392. }
  5393. case "inviteLoginSz":
  5394. _formdiv = new U.UF.UI.form(
  5395. "随机码登录",
  5396. $$("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 }), {
  5397. "id": "loginSz",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. break;
  5404. case "loginSz":
  5405. _formdiv = new U.UF.UI.form(
  5406. "教师登录",
  5407. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5408. "id": "loginSz",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. break;
  5415. case "teacher":
  5416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5417. setTimeout(() => {
  5418. U.MD.U.L.login();
  5419. }, 2000);
  5420. } else {
  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-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5424. "id": "teacher",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. break;
  5431. }
  5432. case "dataBoardSZArea":
  5433. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5434. setTimeout(() => {
  5435. U.MD.U.L.login();
  5436. }, 2000);
  5437. } else {
  5438. _formdiv = new U.UF.UI.form(
  5439. "综合数据看板",
  5440. $$("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 }), {
  5441. "id": "dataBoardSZArea",
  5442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. break;
  5448. }
  5449. case "dataBoardSZCity":
  5450. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5451. setTimeout(() => {
  5452. U.MD.U.L.login();
  5453. }, 2000);
  5454. } else {
  5455. _formdiv = new U.UF.UI.form(
  5456. "综合数据看板",
  5457. $$("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 }), {
  5458. "id": "dataBoardSZCity",
  5459. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. break;
  5465. }
  5466. case "classroom_observation_board":
  5467. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5468. setTimeout(() => {
  5469. U.MD.U.L.login();
  5470. }, 2000);
  5471. } else {
  5472. _formdiv = new U.UF.UI.form(
  5473. "课堂观察",
  5474. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5475. "id": "classroom_observation_board",
  5476. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. break;
  5482. }
  5483. case "classroom_observation_ob_comment":
  5484. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5485. setTimeout(() => {
  5486. U.MD.U.L.login();
  5487. }, 2000);
  5488. } else {
  5489. _formdiv = new U.UF.UI.form(
  5490. "课堂审核",
  5491. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5492. "id": "classroom_observation_ob_comment",
  5493. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. break;
  5499. }
  5500. case "gptConfig":
  5501. _formdiv = new U.UF.UI.form(
  5502. data.name ? data.name : "应用中心",
  5503. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5504. "id": "gptConfig" + data.id,
  5505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5506. "onresize": function () { }
  5507. }, {
  5508. closecallback: function () { }
  5509. }, { "style": { "height": "36px" } }).form; //创建窗体
  5510. break;
  5511. }
  5512. }
  5513. U.MD.D.I.openApplication = function (str, obj, info) {
  5514. obj = obj || {};
  5515. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5516. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5517. _userinfo = US.userInfo, //登录用户信息
  5518. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5519. _oid = obj.organizeid || _userinfo.organizeid,
  5520. _type = US.userInfo.type,
  5521. _org = US.userInfo.org,
  5522. _role = US.userInfo.role,
  5523. _classId = US.userInfo.classid,
  5524. _TscreenType = 1
  5525. _screenType = 2,
  5526. _SscreenType = 3;
  5527. let iframeBool = true
  5528. if(U.UF.UI.form.allForm[str]){
  5529. iframeBool = false
  5530. }
  5531. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5532. return;
  5533. }
  5534. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5535. switch (str) {
  5536. case "studnetProject": //好友打开
  5537. _formdiv = new U.UF.UI.form(
  5538. "我的项目",
  5539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5540. "id": "studnetProject",
  5541. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. _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); } }
  5547. break;
  5548. case "studentEvaluate": //好友打开
  5549. _formdiv = new U.UF.UI.form(
  5550. "我的评价",
  5551. $$("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 }), {
  5552. "id": "studentEvaluate",
  5553. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "my":
  5561. _formdiv = new U.UF.UI.form(
  5562. "我的资料",
  5563. $$("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 }), {
  5564. "id": "my",
  5565. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "program":
  5573. _formdiv = new U.UF.UI.form(
  5574. "编程平台",
  5575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5576. "id": "program",
  5577. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "library":
  5585. _formdiv = new U.UF.UI.form(
  5586. "素材库",
  5587. $$("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 }), {
  5588. "id": "library",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "whiteboard":
  5597. _formdiv = new U.UF.UI.form(
  5598. "电子白板",
  5599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5600. "id": "whiteboard",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "investigation":
  5609. _formdiv = new U.UF.UI.form(
  5610. "问卷调查",
  5611. $$("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 }), {
  5612. "id": "investigation",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "note":
  5621. _formdiv = new U.UF.UI.form(
  5622. "便签分类",
  5623. $$("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 }), {
  5624. "id": "note",
  5625. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. // case "score":
  5633. // _formdiv = new U.UF.UI.form(
  5634. // "量规评分",
  5635. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5636. // "id": "score",
  5637. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5638. // "onresize": function() {}
  5639. // }, {
  5640. // closecallback: function() {}
  5641. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. // _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); } }
  5643. // break;
  5644. case "mind":
  5645. _formdiv = new U.UF.UI.form(
  5646. "思维导图",
  5647. $$("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"
  5648. "id": "mind",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "doc":
  5657. // U.MD.D.I.isRoom();
  5658. _formdiv = new U.UF.UI.form(
  5659. "协同文档",
  5660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5661. "id": "doc",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5668. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5669. // })
  5670. _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); } }
  5671. break;
  5672. case "studentStudy":
  5673. _formdiv = new U.UF.UI.form(
  5674. "课程中心",
  5675. $$("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
  5676. "id": "studentStudy",
  5677. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5678. "onresize": function () { }
  5679. }, {
  5680. closecallback: function () { }
  5681. }, { "style": { "height": "36px" } }).form; //创建窗体
  5682. _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); } }
  5683. break;
  5684. case "train": //好友打开
  5685. _formdiv = new U.UF.UI.form(
  5686. "训练平台",
  5687. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5688. "id": "train",
  5689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //创建窗体
  5694. _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); } }
  5695. break;
  5696. case "mindNetwork": //好友打开
  5697. _formdiv = new U.UF.UI.form(
  5698. "思维网格",
  5699. $$("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 }), {
  5700. "id": "mindNetwork",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _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); } }
  5707. break;
  5708. case "studentClassRoom": //好友打开
  5709. _formdiv = new U.UF.UI.form(
  5710. "实时课堂",
  5711. $$("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 }), {
  5712. "id": "studentClassRoom",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. _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); } }
  5719. setTimeout(() => {
  5720. U.UF.F.windowZooming(_formdiv)
  5721. }, 0);
  5722. break;
  5723. }
  5724. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5725. switch (str) {
  5726. case "studnetProject": //好友打开
  5727. _formdiv = new U.UF.UI.form(
  5728. "我的项目",
  5729. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5730. "id": "studnetProject",
  5731. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5737. break;
  5738. case "studentEvaluate": //好友打开
  5739. _formdiv = new U.UF.UI.form(
  5740. "我的评价",
  5741. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5742. "id": "studentEvaluate",
  5743. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5749. break;
  5750. case "my":
  5751. _formdiv = new U.UF.UI.form(
  5752. "我的资料",
  5753. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5754. "id": "my",
  5755. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5761. break;
  5762. case "program":
  5763. _formdiv = new U.UF.UI.form(
  5764. "编程平台",
  5765. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5766. "id": "program",
  5767. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5773. break;
  5774. case "library":
  5775. _formdiv = new U.UF.UI.form(
  5776. "素材库",
  5777. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5778. "id": "library",
  5779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5785. break;
  5786. case "whiteboard":
  5787. _formdiv = new U.UF.UI.form(
  5788. "电子白板",
  5789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5790. "id": "whiteboard",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5797. break;
  5798. case "investigation":
  5799. _formdiv = new U.UF.UI.form(
  5800. "问卷调查",
  5801. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5802. "id": "investigation",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5809. break;
  5810. case "note":
  5811. _formdiv = new U.UF.UI.form(
  5812. "便签分类",
  5813. $$("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 }), {
  5814. "id": "note",
  5815. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. // case "score":
  5823. // _formdiv = new U.UF.UI.form(
  5824. // "量规评分",
  5825. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5826. // "id": "score",
  5827. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. // "onresize": function() {}
  5829. // }, {
  5830. // closecallback: function() {}
  5831. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. // _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); } }
  5833. // break;
  5834. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5838. "id": "mind",
  5839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5845. break;
  5846. case "doc":
  5847. // U.MD.D.I.isRoom();
  5848. _formdiv = new U.UF.UI.form(
  5849. "协同文档",
  5850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5851. "id": "doc",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5858. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5859. })
  5860. _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); } }
  5861. break;
  5862. case "train": //好友打开
  5863. _formdiv = new U.UF.UI.form(
  5864. "训练平台",
  5865. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5866. "id": "train",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5873. break;
  5874. case "studentStudy":
  5875. _formdiv = new U.UF.UI.form(
  5876. "课程中心",
  5877. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  5878. "id": "studentStudy",
  5879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "mindNetwork": //好友打开
  5887. _formdiv = new U.UF.UI.form(
  5888. "思维网格",
  5889. $$("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 }), {
  5890. "id": "mindNetwork",
  5891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. _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); } }
  5897. break;
  5898. case "studentClassRoom": //好友打开
  5899. _formdiv = new U.UF.UI.form(
  5900. "实时课堂",
  5901. $$("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 }), {
  5902. "id": "studentClassRoom",
  5903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _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); } }
  5909. setTimeout(() => {
  5910. U.UF.F.windowZooming(_formdiv)
  5911. }, 0);
  5912. break;
  5913. }
  5914. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5915. //选择应用处理
  5916. switch (str) {
  5917. case "project": //好友打开
  5918. _formdiv = new U.UF.UI.form(
  5919. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5920. $$("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 }), {
  5921. "id": "project",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. case "student":
  5930. _formdiv = new U.UF.UI.form(
  5931. "学生管理",
  5932. $$("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 }), {
  5933. "id": "student",
  5934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5935. "onresize": function () { }
  5936. }, {
  5937. closecallback: function () { }
  5938. }, { "style": { "height": "36px" } }).form; //创建窗体
  5939. _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); } }
  5940. break;
  5941. case "evaluate":
  5942. _formdiv = new U.UF.UI.form(
  5943. "学生评价",
  5944. $$("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 }), {
  5945. "id": "evaluate",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. _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); } }
  5952. break;
  5953. case "sys":
  5954. _formdiv = new U.UF.UI.form(
  5955. "目标管理",
  5956. $$("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 }), {
  5957. "id": "sys",
  5958. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5959. "onresize": function () { }
  5960. }, {
  5961. closecallback: function () { }
  5962. }, { "style": { "height": "36px" } }).form; //创建窗体
  5963. _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); } }
  5964. break;
  5965. case "courseDesign":
  5966. _formdiv = new U.UF.UI.form(
  5967. "项目设计",
  5968. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5969. "id": "courseDesign",
  5970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5971. "onresize": function () { }
  5972. }, {
  5973. closecallback: function () { }
  5974. }, { "style": { "height": "36px" } }).form; //创建窗体
  5975. _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); } }
  5976. break;
  5977. case "program":
  5978. _formdiv = new U.UF.UI.form(
  5979. "编程平台",
  5980. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5981. "id": "program",
  5982. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5983. "onresize": function () { }
  5984. }, {
  5985. closecallback: function () { }
  5986. }, { "style": { "height": "36px" } }).form; //创建窗体
  5987. _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); } }
  5988. break;
  5989. case "class":
  5990. _formdiv = new U.UF.UI.form(
  5991. "班级管理",
  5992. $$("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 }), {
  5993. "id": "class",
  5994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. case "Grade":
  6002. _formdiv = new U.UF.UI.form(
  6003. "年级管理",
  6004. $$("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 }), {
  6005. "id": "Grade",
  6006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6007. "onresize": function () { }
  6008. }, {
  6009. closecallback: function () { }
  6010. }, { "style": { "height": "36px" } }).form; //创建窗体
  6011. _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); } }
  6012. break;
  6013. case "teacherOffice":
  6014. _formdiv = new U.UF.UI.form(
  6015. "教研室",
  6016. $$("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 }), {
  6017. "id": "teacherOffice",
  6018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _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); } }
  6024. break;
  6025. case "my":
  6026. _formdiv = new U.UF.UI.form(
  6027. "我的资料",
  6028. $$("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 }), {
  6029. "id": "my",
  6030. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _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); } }
  6036. break;
  6037. case "notice":
  6038. _formdiv = new U.UF.UI.form(
  6039. "通知公告",
  6040. $$("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 }), {
  6041. "id": "notice",
  6042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _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); } }
  6048. break;
  6049. case "library":
  6050. _formdiv = new U.UF.UI.form(
  6051. "素材库",
  6052. $$("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 }), {
  6053. "id": "library",
  6054. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6055. "onresize": function () { }
  6056. }, {
  6057. closecallback: function () { }
  6058. }, { "style": { "height": "36px" } }).form; //创建窗体
  6059. _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); } }
  6060. break;
  6061. case "whiteboard":
  6062. _formdiv = new U.UF.UI.form(
  6063. "电子白板",
  6064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6065. "id": "whiteboard",
  6066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //创建窗体
  6071. _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); } }
  6072. break;
  6073. case "investigation":
  6074. _formdiv = new U.UF.UI.form(
  6075. "问卷调查",
  6076. $$("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 }), {
  6077. "id": "investigation",
  6078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //创建窗体
  6083. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6084. break;
  6085. case "note":
  6086. _formdiv = new U.UF.UI.form(
  6087. "便签分类",
  6088. $$("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 }), {
  6089. "id": "note",
  6090. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //创建窗体
  6095. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6096. break;
  6097. // case "score":
  6098. // _formdiv = new U.UF.UI.form(
  6099. // "量规评分",
  6100. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6101. // "id": "score",
  6102. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6103. // "onresize": function() {}
  6104. // }, {
  6105. // closecallback: function() {}
  6106. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6107. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6108. // break;
  6109. case "mind":
  6110. _formdiv = new U.UF.UI.form(
  6111. "思维导图",
  6112. $$("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"
  6113. "id": "mind",
  6114. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6115. "onresize": function () { }
  6116. }, {
  6117. closecallback: function () { }
  6118. }, { "style": { "height": "36px" } }).form; //创建窗体
  6119. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6120. break;
  6121. case "doc":
  6122. // U.MD.D.I.isRoom();
  6123. _formdiv = new U.UF.UI.form(
  6124. "协同文档",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6126. "id": "doc",
  6127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6133. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6134. })
  6135. _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); } }
  6136. break;
  6137. case "study":
  6138. _formdiv = new U.UF.UI.form(
  6139. "课程中心",
  6140. $$("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
  6141. "id": "study",
  6142. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "mindNetwork": //好友打开
  6150. _formdiv = new U.UF.UI.form(
  6151. "思维网格",
  6152. $$("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 }), {
  6153. "id": "mindNetwork",
  6154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "train": //好友打开
  6162. _formdiv = new U.UF.UI.form(
  6163. "训练平台",
  6164. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6165. "id": "mindNetwork",
  6166. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "teacherClassRoom": //好友打开
  6174. _formdiv = new U.UF.UI.form(
  6175. "实时课堂",
  6176. $$("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 }), {
  6177. "id": "teacherClassRoom",
  6178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. setTimeout(() => {
  6185. U.UF.F.windowZooming(_formdiv)
  6186. }, 0);
  6187. break;
  6188. }
  6189. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6190. switch (str) {
  6191. case "project": //好友打开
  6192. _formdiv = new U.UF.UI.form(
  6193. "课程管理",
  6194. $$("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 }), {
  6195. "id": "project",
  6196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _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); } }
  6202. break;
  6203. case "evaluate":
  6204. _formdiv = new U.UF.UI.form(
  6205. "学生评价",
  6206. $$("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 }), {
  6207. "id": "evaluate",
  6208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _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); } }
  6214. break;
  6215. case "notice":
  6216. _formdiv = new U.UF.UI.form(
  6217. "通知公告",
  6218. $$("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 }), {
  6219. "id": "notice",
  6220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6226. break;
  6227. case "stuLibrary":
  6228. _formdiv = new U.UF.UI.form(
  6229. "学习资料",
  6230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6231. "id": "stuLibrary",
  6232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6238. break;
  6239. case "program":
  6240. _formdiv = new U.UF.UI.form(
  6241. "编程平台",
  6242. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6243. "id": "program",
  6244. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6250. break;
  6251. case "whiteboard":
  6252. _formdiv = new U.UF.UI.form(
  6253. "电子白板",
  6254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6255. "id": "whiteboard",
  6256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6262. break;
  6263. case "investigation":
  6264. _formdiv = new U.UF.UI.form(
  6265. "问卷调查",
  6266. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6267. "id": "investigation",
  6268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6274. break;
  6275. case "mind":
  6276. _formdiv = new U.UF.UI.form(
  6277. "思维导图",
  6278. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6279. "id": "mind",
  6280. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6286. break;
  6287. case "doc":
  6288. // U.MD.D.I.isRoom();
  6289. _formdiv = new U.UF.UI.form(
  6290. "协同文档",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6292. "id": "doc",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6299. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6300. })
  6301. _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); } }
  6302. break;
  6303. case "study":
  6304. _formdiv = new U.UF.UI.form(
  6305. "课程中心",
  6306. $$("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
  6307. "id": "study",
  6308. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6314. break;
  6315. case "mindNetwork": //好友打开
  6316. _formdiv = new U.UF.UI.form(
  6317. "思维网格",
  6318. $$("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 }), {
  6319. "id": "mindNetwork",
  6320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _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); } }
  6326. break;
  6327. case "train": //好友打开
  6328. _formdiv = new U.UF.UI.form(
  6329. "训练平台",
  6330. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6331. "id": "train",
  6332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //创建窗体
  6337. _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); } }
  6338. break;
  6339. case "sys":
  6340. _formdiv = new U.UF.UI.form(
  6341. "目标管理",
  6342. $$("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 }), {
  6343. "id": "sys",
  6344. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6345. "onresize": function () { }
  6346. }, {
  6347. closecallback: function () { }
  6348. }, { "style": { "height": "36px" } }).form; //创建窗体
  6349. _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); } }
  6350. break;
  6351. case "courseDesign":
  6352. _formdiv = new U.UF.UI.form(
  6353. "项目设计",
  6354. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6355. "id": "courseDesign",
  6356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _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); } }
  6362. break;
  6363. }
  6364. } else if (!_type) {
  6365. switch (str) {
  6366. case "my":
  6367. _formdiv = new U.UF.UI.form(
  6368. "我的资料",
  6369. $$("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 }), {
  6370. "id": "my",
  6371. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _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); } }
  6377. break;
  6378. }
  6379. }
  6380. switch (str) {
  6381. // AIprogram2 AI体验 aihub.cocorobo.cn
  6382. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6383. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6384. case "formulaEdi": //公式编辑
  6385. _formdiv = new U.UF.UI.form(
  6386. "公式编辑",
  6387. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6388. "id": "formulaEdi",
  6389. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6395. break;
  6396. case "molStr": //分子结构
  6397. _formdiv = new U.UF.UI.form(
  6398. "分子结构",
  6399. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6400. "id": "molStr",
  6401. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6407. break;
  6408. case "timeAxis": //时间轴
  6409. _formdiv = new U.UF.UI.form(
  6410. "时间轴",
  6411. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6412. "id": "timeAxis",
  6413. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6419. break;
  6420. case "AIprogram2": //AI体验
  6421. _formdiv = new U.UF.UI.form(
  6422. "AI体验",
  6423. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6424. "id": "AIprogram2",
  6425. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _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); } }
  6431. break;
  6432. case "Pythonprogram": //python编程
  6433. _formdiv = new U.UF.UI.form(
  6434. "Python编程",
  6435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6436. "id": "Pythonprogram",
  6437. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _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); } }
  6443. break;
  6444. case "AIprogram": //ai编程
  6445. _formdiv = new U.UF.UI.form(
  6446. "AI编程平台",
  6447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6448. "id": "AIprogram",
  6449. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _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); } }
  6455. break;
  6456. case "CocoPi": //CocoPi
  6457. _formdiv = new U.UF.UI.form(
  6458. "CocoPi",
  6459. $$("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" }), {
  6460. "id": "CocoPi",
  6461. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _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); } }
  6467. break;
  6468. case "Wood": //Wood
  6469. _formdiv = new U.UF.UI.form(
  6470. "海龟编程",
  6471. $$("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/" }), {
  6472. "id": "Wood",
  6473. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _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); } }
  6479. break;
  6480. case "car": //模拟驾驶
  6481. _formdiv = new U.UF.UI.form(
  6482. "模拟驾驶",
  6483. $$("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/" }), {
  6484. "id": "car",
  6485. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _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); } }
  6491. break;
  6492. case "lineSearch": //路径搜索
  6493. _formdiv = new U.UF.UI.form(
  6494. "路径搜索",
  6495. $$("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/" }), {
  6496. "id": "lineSearch",
  6497. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _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); } }
  6503. break;
  6504. case "deepLearning": //深度学习
  6505. _formdiv = new U.UF.UI.form(
  6506. "深度学习",
  6507. $$("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/#" }), {
  6508. "id": "deepLearning",
  6509. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _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); } }
  6515. break;
  6516. case "allHistory": //深度学习
  6517. _formdiv = new U.UF.UI.form(
  6518. "全历史",
  6519. $$("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/" }), {
  6520. "id": "allHistory",
  6521. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _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); } }
  6527. break;
  6528. case "chatPDF": //ai编程
  6529. _formdiv = new U.UF.UI.form(
  6530. "chatPDF",
  6531. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6532. "id": "chatPDF",
  6533. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. _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); } }
  6539. break;
  6540. case "resources": //国家教育
  6541. _formdiv = new U.UF.UI.form(
  6542. "国家教育",
  6543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6544. "id": "resources",
  6545. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _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); } }
  6551. break;
  6552. case "codeEdit": //源码编辑
  6553. _formdiv = new U.UF.UI.form(
  6554. "源码编辑",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6556. "id": "codeEdit",
  6557. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. closecallback: function () { }
  6561. }, { "style": { "height": "36px" } }).form; //创建窗体
  6562. _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); } }
  6563. break; //
  6564. case "MindMap": //MindMap
  6565. _formdiv = new U.UF.UI.form(
  6566. "MindMap",
  6567. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6568. "id": "MindMap",
  6569. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6570. "onresize": function () { }
  6571. }, {
  6572. closecallback: function () { }
  6573. }, { "style": { "height": "36px" } }).form; //创建窗体
  6574. _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); } }
  6575. break;
  6576. case "netWorkPanel": //netWorkPanel
  6577. _formdiv = new U.UF.UI.form(
  6578. "netWorkPanel",
  6579. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6580. "id": "netWorkPanel",
  6581. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _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); } }
  6587. break;
  6588. case "GeoGebra": //GeoGebra
  6589. _formdiv = new U.UF.UI.form(
  6590. "GeoGebra",
  6591. $$("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" }), {
  6592. "id": "GeoGebra",
  6593. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _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); } }
  6599. break;
  6600. case "translation": //翻译
  6601. _formdiv = new U.UF.UI.form(
  6602. "翻译",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6604. "id": "translation",
  6605. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _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); } }
  6611. break;
  6612. case "mohe": //魔盒
  6613. _formdiv = new U.UF.UI.form(
  6614. "魔盒识字",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6616. "id": "mohe",
  6617. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _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); } }
  6623. break;
  6624. case "24game": //24点
  6625. _formdiv = new U.UF.UI.form(
  6626. "24点",
  6627. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6628. "id": "24game",
  6629. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _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); } }
  6635. break;
  6636. case "case":
  6637. _formdiv = new U.UF.UI.form(
  6638. "课程进展",
  6639. $$("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 }), {
  6640. "id": "case",
  6641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _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); } }
  6647. break;
  6648. case "snf":
  6649. _formdiv = new U.UF.UI.form(
  6650. "赛诺梵",
  6651. $$("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" }), {
  6652. "id": "snf",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _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); } }
  6659. break;
  6660. case "hanFamily":
  6661. _formdiv = new U.UF.UI.form(
  6662. "汉字家族",
  6663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6664. "id": "hanFamily",
  6665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _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); } }
  6671. break;
  6672. case "hanClassics":
  6673. _formdiv = new U.UF.UI.form(
  6674. "国学经典",
  6675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6676. "id": "hanClassics",
  6677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _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); } }
  6683. break;
  6684. case "hanTraining":
  6685. _formdiv = new U.UF.UI.form(
  6686. "笔画训练",
  6687. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6688. "id": "hanTraining",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _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); } }
  6695. break;
  6696. case "hanClass":
  6697. _formdiv = new U.UF.UI.form(
  6698. "书法课堂",
  6699. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6700. "id": "hanClass",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _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); } }
  6707. break;
  6708. case "han":
  6709. _formdiv = new U.UF.UI.form(
  6710. "汉字宫",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6712. "id": "han",
  6713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _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); } }
  6719. break;
  6720. case "projectGM": //课程管理
  6721. _formdiv = new U.UF.UI.form(
  6722. "课程管理",
  6723. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6724. "id": "projectGM",
  6725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _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); } }
  6731. break;
  6732. case "studyGM": //课程中心
  6733. _formdiv = new U.UF.UI.form(
  6734. "课程中心",
  6735. $$("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
  6736. "id": "study",
  6737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. break;
  6744. // studentGM
  6745. case "studentGM": //学生管理
  6746. _formdiv = new U.UF.UI.form(
  6747. "学生管理",
  6748. $$("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 }), {
  6749. "id": "studentGM",
  6750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _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); } }
  6756. break;
  6757. case "evaluateGM": //学生评价
  6758. _formdiv = new U.UF.UI.form(
  6759. "学生评价",
  6760. $$("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 }), {
  6761. "id": "evaluateGM",
  6762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _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); } }
  6768. break;
  6769. // classGM
  6770. case "classGM": //班级管理
  6771. _formdiv = new U.UF.UI.form(
  6772. "班级管理",
  6773. $$("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 }), {
  6774. "id": "classGM",
  6775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () { }
  6779. }, { "style": { "height": "36px" } }).form; //创建窗体
  6780. _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); } }
  6781. break;
  6782. // dataGM
  6783. case "dataGM":
  6784. _formdiv = new U.UF.UI.form(
  6785. "我的资料",
  6786. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6787. "id": "dataGM",
  6788. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6794. break;
  6795. // caseGM
  6796. case "caseGM": //课程进展
  6797. _formdiv = new U.UF.UI.form(
  6798. "课程进展",
  6799. $$("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 }), {
  6800. "id": "caseGM",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _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); } }
  6807. break;
  6808. // meterialGM
  6809. case "meterialGM": //素材库
  6810. _formdiv = new U.UF.UI.form(
  6811. "素材库",
  6812. $$("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 }), {
  6813. "id": "meterialGM",
  6814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. break;
  6821. // evaluateSGM
  6822. case "evaluateSGM": //我的评价
  6823. _formdiv = new U.UF.UI.form(
  6824. "我的评价",
  6825. $$("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 }), {
  6826. "id": "evaluateSGM",
  6827. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, { "style": { "height": "36px" } }).form; //创建窗体
  6832. _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); } }
  6833. break;
  6834. case "jupyter": //jupyter
  6835. _formdiv = new U.UF.UI.form(
  6836. "jupyter",
  6837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6838. "id": "jupyter",
  6839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6840. "onresize": function () { }
  6841. }, {
  6842. closecallback: function () { }
  6843. }, { "style": { "height": "36px" } }).form; //创建窗体
  6844. _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); } }
  6845. break;
  6846. case "number": //数字实验室
  6847. _formdiv = new U.UF.UI.form(
  6848. "数字实验室",
  6849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6850. "id": "number",
  6851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _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); } }
  6857. break;
  6858. case "studentCourse": //项目管理 学生
  6859. _formdiv = new U.UF.UI.form(
  6860. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6861. $$("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 }), {
  6862. "id": "studentCourse",
  6863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _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); } }
  6869. break;
  6870. case "studentCourseS": //项目管理 老师
  6871. _formdiv = new U.UF.UI.form(
  6872. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6873. $$("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 }), {
  6874. "id": "studentCourseS",
  6875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _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); } }
  6881. break;
  6882. case "studentIndex": //项目中心
  6883. _formdiv = new U.UF.UI.form(
  6884. "项目中心",
  6885. $$("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 }), {
  6886. "id": "studentIndex",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _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); } }
  6893. break;
  6894. case "CaseDesignS":
  6895. _formdiv = new U.UF.UI.form(
  6896. "项目进展",
  6897. $$("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 }), {
  6898. "id": "case",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _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); } }
  6905. break;
  6906. case "tcStudent": //腾讯学生管理
  6907. _formdiv = new U.UF.UI.form(
  6908. "学生管理",
  6909. $$("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 }), {
  6910. "id": "tcStudent",
  6911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, { "style": { "height": "36px" } }).form; //创建窗体
  6916. _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); } }
  6917. break;
  6918. case "tcSchool": //腾讯学校管理
  6919. _formdiv = new U.UF.UI.form(
  6920. "学校管理",
  6921. $$("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 }), {
  6922. "id": "tcSchool",
  6923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6924. "onresize": function () { }
  6925. }, {
  6926. closecallback: function () { }
  6927. }, { "style": { "height": "36px" } }).form; //创建窗体
  6928. _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); } }
  6929. break;
  6930. case "tcTeacher": //腾讯学校管理
  6931. _formdiv = new U.UF.UI.form(
  6932. "教师管理",
  6933. $$("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 }), {
  6934. "id": "tcTeacher",
  6935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6936. "onresize": function () { }
  6937. }, {
  6938. closecallback: function () { }
  6939. }, { "style": { "height": "36px" } }).form; //创建窗体
  6940. _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); } }
  6941. break;
  6942. case "teacher":
  6943. _formdiv = new U.UF.UI.form(
  6944. "教师管理",
  6945. $$("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 }), {
  6946. "id": "teacher",
  6947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6948. "onresize": function () { }
  6949. }, {
  6950. closecallback: function () { }
  6951. }, { "style": { "height": "36px" } }).form; //创建窗体
  6952. _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); } }
  6953. break;
  6954. case "tcData": //腾讯我的资料
  6955. _formdiv = new U.UF.UI.form(
  6956. "我的资料",
  6957. $$("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 }), {
  6958. "id": "tcData",
  6959. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //创建窗体
  6964. _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); } }
  6965. break;
  6966. case "tcNotice": //腾讯消息通知
  6967. _formdiv = new U.UF.UI.form(
  6968. "消息通知",
  6969. $$("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 }), {
  6970. "id": "tcNotice",
  6971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _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); } }
  6977. break;
  6978. case "myReport": //好友打开
  6979. _formdiv = new U.UF.UI.form(
  6980. "我的评价",
  6981. $$("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 }), {
  6982. "id": "myReport",
  6983. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //创建窗体
  6988. _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); } }
  6989. break;
  6990. case "learnAna": //好友打开
  6991. _formdiv = new U.UF.UI.form(
  6992. "学习分析",
  6993. $$("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 }), {
  6994. "id": "learnAna",
  6995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _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); } }
  7001. break;
  7002. case "AIChat": //AI共创
  7003. _formdiv = new U.UF.UI.form(
  7004. "AI共创",
  7005. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7006. "id": "AIChat",
  7007. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. istop: true,
  7011. closecallback: function () { $("#aichat_icon").remove(); },
  7012. narrowcallback: function () {
  7013. if (!$("#aichat_icon")[0]) {
  7014. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7015. }
  7016. },
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. break;
  7020. case "ainew": //AI共创
  7021. _formdiv = new U.UF.UI.form(
  7022. "AI协同",
  7023. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7024. "id": "ainew",
  7025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7031. break;
  7032. case "gpt4": //gpt4
  7033. _formdiv = new U.UF.UI.form(
  7034. "AI助手",
  7035. $$("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 }), {
  7036. "id": "gpt4",
  7037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7043. break;
  7044. case "aigpt": //gpt4
  7045. _formdiv = new U.UF.UI.form(
  7046. "AI助手+",
  7047. $$("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 }), {
  7048. "id": "aigpt",
  7049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () {
  7053. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7054. }
  7055. }, { "style": { "height": "36px" } }).form; //创建窗体
  7056. _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); } }
  7057. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7058. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7059. })
  7060. break;
  7061. case "aiKnowledge": //aiKnowledge
  7062. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7063. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7064. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7065. }
  7066. _formdiv = new U.UF.UI.form(
  7067. "知识建构",
  7068. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7069. "id": "aiKnowledge",
  7070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7071. "onresize": function () { }
  7072. }, {
  7073. closecallback: function () { }
  7074. }, { "style": { "height": "36px" } }).form; //创建窗体
  7075. _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); } }
  7076. break;
  7077. case "futureClass": //AI共创
  7078. _formdiv = new U.UF.UI.form(
  7079. "协同建构",
  7080. $$("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
  7081. "id": "synergyCourse",
  7082. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7083. "onresize": function () { }
  7084. }, {
  7085. closecallback: function () {
  7086. $("iframe", _formdiv)[0].contentWindow.loginout();
  7087. }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "aiagent": //ai agent
  7092. _formdiv = new U.UF.UI.form(
  7093. "AI Agent",
  7094. $$("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" }), {
  7095. "id": "AIAgent",
  7096. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _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); } }
  7102. break;
  7103. case "dataBoard": //数据看板
  7104. _formdiv = new U.UF.UI.form(
  7105. "数据看板",
  7106. $$("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 }), {
  7107. "id": "dataBoard",
  7108. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _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); } }
  7114. break;
  7115. case "dataBoardSies": //数据融合
  7116. _formdiv = new U.UF.UI.form(
  7117. "数据融合",
  7118. $$("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 }), {
  7119. "id": "dataBoardSies",
  7120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //创建窗体
  7125. _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); } }
  7126. break;
  7127. case "dataBoardNew": //数据看板
  7128. _formdiv = new U.UF.UI.form(
  7129. "综合看板",
  7130. $$("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 }), {
  7131. "id": "dataBoardNew",
  7132. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //创建窗体
  7137. _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); } }
  7138. break;
  7139. case "dataBoardTest": //数据看板
  7140. _formdiv = new U.UF.UI.form(
  7141. "评测看板",
  7142. $$("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 }), {
  7143. "id": "dataBoardTest",
  7144. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. closecallback: function () { }
  7148. }, { "style": { "height": "36px" } }).form; //创建窗体
  7149. _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); } }
  7150. break;
  7151. case "AIAnalyse": //AI共创
  7152. _formdiv = new U.UF.UI.form(
  7153. "AI分析",
  7154. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7155. "id": "AIAnalyse",
  7156. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, { "style": { "height": "36px" } }).form; //创建窗体
  7161. _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); } }
  7162. break;
  7163. case "studioCourse": //AI共创
  7164. _formdiv = new U.UF.UI.form(
  7165. "工作管理",
  7166. $$("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 }), {
  7167. "id": "studioCourse",
  7168. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, { "style": { "height": "36px" } }).form; //创建窗体
  7173. _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); } }
  7174. break;
  7175. case "studioIndex": //AI共创
  7176. _formdiv = new U.UF.UI.form(
  7177. "工作中心",
  7178. $$("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 }), {
  7179. "id": "studioIndex",
  7180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7181. "onresize": function () { }
  7182. }, {
  7183. closecallback: function () { }
  7184. }, { "style": { "height": "36px" } }).form; //创建窗体
  7185. _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); } }
  7186. break;
  7187. case "source":
  7188. _formdiv = new U.UF.UI.form(
  7189. "教学资源",
  7190. $$("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 }), {
  7191. "id": "source",
  7192. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7193. "onresize": function () { }
  7194. }, {
  7195. closecallback: function () { }
  7196. }, { "style": { "height": "36px" } }).form; //创建窗体
  7197. _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); } }
  7198. break;
  7199. case "testTeacher":
  7200. _formdiv = new U.UF.UI.form(
  7201. "智能表单",
  7202. $$("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 }), {
  7203. "id": "testTeacher",
  7204. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7205. "onresize": function () { }
  7206. }, {
  7207. closecallback: function () { }
  7208. }, { "style": { "height": "36px" } }).form; //创建窗体
  7209. _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); } }
  7210. break;
  7211. case "testStudent":
  7212. _formdiv = new U.UF.UI.form(
  7213. "教师中心",
  7214. $$("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 }), {
  7215. "id": "testStudent",
  7216. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7217. "onresize": function () { }
  7218. }, {
  7219. closecallback: function () { }
  7220. }, { "style": { "height": "36px" } }).form; //创建窗体
  7221. _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); } }
  7222. break;
  7223. case "testTeacherSies":
  7224. _formdiv = new U.UF.UI.form(
  7225. "教师管理",
  7226. $$("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 }), {
  7227. "id": "testTeacherSies",
  7228. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7229. "onresize": function () { }
  7230. }, {
  7231. closecallback: function () { }
  7232. }, { "style": { "height": "36px" } }).form; //创建窗体
  7233. _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); } }
  7234. break;
  7235. case "testStudentSies":
  7236. _formdiv = new U.UF.UI.form(
  7237. "教师中心",
  7238. $$("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 }), {
  7239. "id": "testStudentSies",
  7240. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, { "style": { "height": "36px" } }).form; //创建窗体
  7245. _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); } }
  7246. break;
  7247. case "ytpbl": //消息通知
  7248. _formdiv = new U.UF.UI.form(
  7249. "案例征集",
  7250. $$("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 }), {
  7251. "id": "ytpbl",
  7252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, { "style": { "height": "36px" } }).form; //创建窗体
  7257. _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); } }
  7258. // 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");
  7259. break;
  7260. case "aiCourseResource": //人工智能窗体
  7261. _formdiv = new U.UF.UI.form(
  7262. false,
  7263. $$("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 }), {
  7264. "id": "aiCourseResource",
  7265. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7266. "onresize": function () { },
  7267. "isdrag": false,
  7268. }, {
  7269. closecallback: function () { }
  7270. }, { "style": { "height": "36px" } }).form; //创建窗体
  7271. _taskbar = ''
  7272. break;
  7273. case "szdjgCocooroboX": //图形化编程
  7274. _formdiv = new U.UF.UI.form(
  7275. "图形化编程",
  7276. $$("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" }), {
  7277. "id": "szdjgCocooroboX",
  7278. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, { "style": { "height": "36px" } }).form; //创建窗体
  7283. _taskbar = ''
  7284. break;
  7285. case "szdjgPython": //python编程
  7286. _formdiv = new U.UF.UI.form(
  7287. "Python编程",
  7288. $$("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" }), {
  7289. "id": "szdjgPython",
  7290. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7291. "onresize": function () { }
  7292. }, {
  7293. closecallback: function () { }
  7294. }, { "style": { "height": "36px" } }).form; //创建窗体
  7295. _taskbar = ''
  7296. break;
  7297. case "Record":
  7298. _formdiv = new U.UF.UI.form(
  7299. "观察记录",
  7300. $$("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 }), {
  7301. "id": "Record",
  7302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7303. "onresize": function () { }
  7304. }, {
  7305. closecallback: function () { }
  7306. }, { "style": { "height": "36px" } }).form; //创建窗体
  7307. _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); } }
  7308. break;
  7309. case "aigptCourse":
  7310. _formdiv = new U.UF.UI.form(
  7311. "AI智能体",
  7312. $$("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' }), {
  7313. "id": "aigptCourse",
  7314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7315. "onresize": function () { }
  7316. }, {
  7317. closecallback: function () { }
  7318. }, { "style": { "height": "36px" } }).form; //创建窗体
  7319. _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); } }
  7320. break;
  7321. case "classroomObservation":
  7322. _formdiv = new U.UF.UI.form(
  7323. "课堂观察",
  7324. $$("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 }), {
  7325. "id": "classroomObservation",
  7326. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7327. "onresize": function () { }
  7328. }, {
  7329. closecallback: function () { }
  7330. }, { "style": { "height": "36px" } }).form; //创建窗体
  7331. _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); } }
  7332. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7333. break;
  7334. case "pblCourse":
  7335. _formdiv = new U.UF.UI.form(
  7336. "学生PBL",
  7337. $$("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 }), {
  7338. "id": "pblCourse",
  7339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7340. "onresize": function () { }
  7341. }, {
  7342. closecallback: function () { }
  7343. }, { "style": { "height": "36px" } }).form; //创建窗体
  7344. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7345. break;
  7346. case "appStore":
  7347. U.MD.D.addOp('','cocoflowOpen','')
  7348. _formdiv = new U.UF.UI.form(
  7349. "CocoFlow",
  7350. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7351. "id": "appStore",
  7352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7353. "onresize": function () { }
  7354. }, {
  7355. closecallback: function () { }
  7356. }, { "style": { "height": "36px" } }).form; //创建窗体
  7357. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7358. break;
  7359. case "sassPlatform":
  7360. _formdiv = new U.UF.UI.form(
  7361. "Sass通用后台管理",
  7362. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7363. "id": "sassPlatform",
  7364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7365. "onresize": function () { }
  7366. }, {
  7367. closecallback: function () { }
  7368. }, { "style": { "height": "36px" } }).form; //创建窗体
  7369. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7370. break;
  7371. case "EDU":
  7372. _formdiv = new U.UF.UI.form(
  7373. "EDU",
  7374. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7375. "id": "EDU",
  7376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7377. "onresize": function () { }
  7378. }, {
  7379. closecallback: function () { }
  7380. }, { "style": { "height": "36px" } }).form; //创建窗体
  7381. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7382. break;
  7383. case "knowledge":
  7384. _formdiv = new U.UF.UI.form(
  7385. "知识库",
  7386. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7387. "id": "knowledge",
  7388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7389. "onresize": function () { }
  7390. }, {
  7391. closecallback: function () { }
  7392. }, { "style": { "height": "36px" } }).form; //创建窗体
  7393. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7394. break;
  7395. case "userExamine":
  7396. _formdiv = new U.UF.UI.form(
  7397. "账号申请",
  7398. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7399. "id": "userExamine",
  7400. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7401. "onresize": function () { }
  7402. }, {
  7403. closecallback: function () { }
  7404. }, { "style": { "height": "36px" } }).form; //创建窗体
  7405. break;
  7406. case "cocoflowDeskTop": //cocoflowDeskTop
  7407. _formdiv = new U.UF.UI.form(
  7408. false,
  7409. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7410. "id": "cocoflowDeskTop",
  7411. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7412. "onresize": function () { },
  7413. "isdrag": false,
  7414. }, {
  7415. closecallback: function () { }
  7416. }, { "style": { "height": "36px" } }).form; //创建窗体
  7417. _taskbar = ''
  7418. break;
  7419. }
  7420. //U.MD.D.I.openClick(str);
  7421. //如果有任务栏信息
  7422. if (_taskbar) {
  7423. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7424. }
  7425. if(iframeBool){
  7426. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7427. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7428. // console.log("iframe进入");
  7429. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7430. // };
  7431. setTimeout(() => {
  7432. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7433. }, 2000);
  7434. }
  7435. }
  7436. // U.MD.D.I.openClick = function(str){
  7437. // var click = '';
  7438. // switch(str){
  7439. // case 'friend':
  7440. // click = '我的好友';
  7441. // break;
  7442. // case 'domain':
  7443. // click = '域名管理';
  7444. // break;
  7445. // case 'disk':
  7446. // click = '我的云盘';
  7447. // break;
  7448. // case 'word':
  7449. // click = 'Word';
  7450. // break;
  7451. // case 'excel':
  7452. // click = 'Execl';
  7453. // break;
  7454. // case 'txt':
  7455. // click = '文本文件';
  7456. // break;
  7457. // case 'lookupFriend':
  7458. // click = '查找好友';
  7459. // break;
  7460. // case 'ftp':
  7461. // click = 'FTP';
  7462. // break;
  7463. // case 'group':
  7464. // click = '群组';
  7465. // break;
  7466. // case 'set':
  7467. // click = '我的设置';
  7468. // break;
  7469. // case 'systemSet':
  7470. // click = '系统设置';
  7471. // break;
  7472. // case 'boomYun':
  7473. // click = '互联办公';
  7474. // break;
  7475. // case 'xz':
  7476. // click = '云端下载';
  7477. // break;
  7478. // case 'client':
  7479. // click = '有思浏览器';
  7480. // break;
  7481. // case 'backEndProgramming':
  7482. // click = '在线后台编程';
  7483. // break;
  7484. // case 'frontEndProgramming':
  7485. // click = '在线前端编程';
  7486. // break;
  7487. // default: break;
  7488. // }
  7489. // if(U.MD.D.I.Ip && click){
  7490. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7491. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7492. // })
  7493. // }
  7494. // }
  7495. /**
  7496. *函数作用:ajax简易函数,使用post格式
  7497. *@param url {data} 后台地址
  7498. *@param data {data} 参数json
  7499. *@param fn {data} 回调函数
  7500. *
  7501. */
  7502. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7503. // var xhr = new XMLHttpRequest();
  7504. // xhr.open("GET",url,true);
  7505. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7506. // xhr.onreadystatechange = function(){
  7507. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7508. // fn.call(this,xhr.responseText);
  7509. // }
  7510. // };
  7511. // xhr.send();
  7512. // }
  7513. /*判断是否是内网IP*/
  7514. // U.MD.D.I.isInnerIPFn = function(str){
  7515. // var curPageUrl = str;
  7516. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7517. // curPageUrl =curPageUrl.replace(reg1,'');
  7518. // // console.log('curPageUrl-1 '+curPageUrl);
  7519. // var reg2 = /\:+/g;//替换冒号为一点
  7520. // curPageUrl =curPageUrl.replace(reg2,'.');
  7521. // // console.log('curPageUrl-2 '+curPageUrl);
  7522. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7523. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7524. // if(curPageUrl[2] != '16'){
  7525. // return ipAddress;
  7526. // }else{
  7527. // return false;
  7528. // }
  7529. // }
  7530. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7531. // //compatibility for firefox and chrome
  7532. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7533. // var pc = new myPeerConnection({
  7534. // iceServers: []
  7535. // }),
  7536. // noop = function() {},
  7537. // localIPs = {},
  7538. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7539. // key;
  7540. // function iterateIP(ip) {
  7541. // if (!localIPs[ip]) onNewIP(ip);
  7542. // localIPs[ip] = true;
  7543. // }
  7544. // //create a bogus data channel
  7545. // pc.createDataChannel("");
  7546. // // create offer and set local description
  7547. // pc.createOffer().then(function(sdp) {
  7548. // sdp.sdp.split('\n').forEach(function(line) {
  7549. // if (line.indexOf('candidate') < 0) return;
  7550. // line.match(ipRegex).forEach(iterateIP);
  7551. // });
  7552. // pc.setLocalDescription(sdp, noop, noop);
  7553. // }).catch(function(reason) {
  7554. // // An error occurred, so handle the failure to connect
  7555. // });
  7556. // //sten for candidate events
  7557. // pc.onicecandidate = function(ice) {
  7558. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7559. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7560. // };
  7561. // }
  7562. // U.MD.D.I.getUserIpBool = function(callback){
  7563. // U.MD.D.I.getUserIP(function(ip){
  7564. // alert("Got IP! :" + ip);
  7565. // });
  7566. //}
  7567. //#endregion
  7568. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7569. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7570. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7571. _userinfo = US.userInfo, //登录用户信息
  7572. _userid = US.userInfo.userid //登录用户id
  7573. let _iframe;
  7574. let _cid = cid,
  7575. _stage = stage,
  7576. _task = task,
  7577. _tool = tool;
  7578. var _jie = $$("div", {
  7579. "style": {
  7580. "position": "absolute",
  7581. "bottom": "50px",
  7582. "right": "50px",
  7583. "zIndex": "9999",
  7584. "backgroundColor": "#2268bc",
  7585. "color": "#fff",
  7586. "padding": "12px 20px",
  7587. "cursor": "pointer",
  7588. "borderRadius": "4px",
  7589. },
  7590. "innerHTML": "提交作业"
  7591. })
  7592. let aTool = ''
  7593. let _loading = document.createElement('div')
  7594. _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;"
  7595. // _loading.id = "";
  7596. let _lchild = document.createElement('div')
  7597. let _limg = document.createElement('img')
  7598. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7599. _limg.style = "width: 26px;margin-right: 10px;"
  7600. _lchild.appendChild(_limg)
  7601. let _lspan = document.createElement('span')
  7602. _lspan.innerHTML = "上传中..."
  7603. _lchild.appendChild(_lspan)
  7604. _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%);"
  7605. _loading.appendChild(_lchild)
  7606. var _box = $$('div', {
  7607. "style": {
  7608. "position": "relative",
  7609. "width": "100%",
  7610. "height": "100%",
  7611. },
  7612. })
  7613. _box.appendChild(_loading)
  7614. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7615. switch (str) {
  7616. case "whiteboard":
  7617. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  7626. })
  7627. _box.appendChild(_iframe);
  7628. _box.appendChild(_jie);
  7629. _formdiv = new U.UF.UI.form(
  7630. "电子白板",
  7631. _box, {
  7632. "id": "whiteboard" + 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/whiteBoard.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 "mind":
  7659. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  7668. })
  7669. _box.appendChild(_iframe);
  7670. _box.appendChild(_jie);
  7671. _formdiv = new U.UF.UI.form(
  7672. "思维导图",
  7673. _box, { //"/jsmind/example/demo.html"
  7674. "id": "mind" + 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. _taskbar = {
  7689. "id": str + _formdiv.id,
  7690. "style": {
  7691. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7692. },
  7693. "name": "思维导图",
  7694. "forms": _formdiv,
  7695. "click": function () {
  7696. U.MD.D.I.openApplication(str, obj, info);
  7697. }
  7698. }
  7699. break;
  7700. case "MindMap":
  7701. aTool = 3;
  7702. _iframe = $$("iframe", {
  7703. "frameborder": "no",
  7704. "border": "0",
  7705. "scrolling ": "no",
  7706. "style": {
  7707. "cssText": "border:0;width:100%;height:100%"
  7708. },
  7709. "src": "//cloud.cocorobo.cn/mind/"
  7710. })
  7711. _box.appendChild(_iframe);
  7712. _box.appendChild(_jie);
  7713. _formdiv = new U.UF.UI.form(
  7714. "思维导图",
  7715. _box, { //"/jsmind/example/demo.html"
  7716. "id": "mind" + cid + stage + task + tool,
  7717. "style": {
  7718. "width": "90%",
  7719. "height": "90%",
  7720. "overflow": 'hidden'
  7721. },
  7722. "onresize": function () { }
  7723. }, {
  7724. closecallback: function () { }
  7725. }, {
  7726. "style": {
  7727. "height": "36px"
  7728. }
  7729. }).form; //创建窗体
  7730. _taskbar = {
  7731. "id": str + _formdiv.id,
  7732. "style": {
  7733. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7734. },
  7735. "name": "思维导图",
  7736. "forms": _formdiv,
  7737. "click": function () {
  7738. U.MD.D.I.openApplication(str, obj, info);
  7739. }
  7740. }
  7741. break;
  7742. case "doc":
  7743. aTool = 6;
  7744. _iframe = $$("iframe", {
  7745. "frameborder": "no",
  7746. "border": "0",
  7747. "scrolling ": "no",
  7748. "style": {
  7749. "cssText": "border:0;width:100%;height:100%"
  7750. },
  7751. "src": "/Office/Word/WordEditArea.htm"
  7752. })
  7753. _box.appendChild(_iframe);
  7754. _box.appendChild(_jie);
  7755. _formdiv = new U.UF.UI.form(
  7756. "协同文档",
  7757. _box, {
  7758. "id": "doc" + cid + stage + task + tool,
  7759. "style": {
  7760. "width": "90%",
  7761. "height": "90%",
  7762. "overflow": 'hidden'
  7763. },
  7764. "onresize": function () { }
  7765. }, {
  7766. closecallback: function () { }
  7767. }, {
  7768. "style": {
  7769. "height": "36px"
  7770. }
  7771. }).form; //创建窗体
  7772. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7773. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7774. })
  7775. _taskbar = {
  7776. "id": str + _formdiv.id,
  7777. "style": {
  7778. "backgroundImage": "url(/img/icon/doc.png)"
  7779. },
  7780. "name": "协同文档",
  7781. "forms": _formdiv,
  7782. "click": function () {
  7783. U.MD.D.I.openApplication(str, obj, info);
  7784. }
  7785. }
  7786. break;
  7787. case "mindNetwork": //好友打开
  7788. aTool = 7;
  7789. _iframe = $$("iframe", {
  7790. "webkitallowfullscreen": "",
  7791. "mozallowfullscreen": "",
  7792. "allowfullscreen": "",
  7793. "frameborder": "no",
  7794. "border": "0",
  7795. "scrolling ": "no",
  7796. "style": {
  7797. "cssText": "border:0; width:100%; height:100%;"
  7798. },
  7799. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7800. })
  7801. _box.appendChild(_iframe);
  7802. _box.appendChild(_jie);
  7803. _formdiv = new U.UF.UI.form(
  7804. "思维网格",
  7805. _box, {
  7806. "id": "mindNetwork" + cid + stage + task + tool,
  7807. "style": {
  7808. "width": "90%",
  7809. "height": "90%",
  7810. "overflow": 'hidden'
  7811. },
  7812. "onresize": function () { }
  7813. }, {
  7814. closecallback: function () { }
  7815. }, {
  7816. "style": {
  7817. "height": "36px"
  7818. }
  7819. }).form; //创建窗体
  7820. _taskbar = {
  7821. "id": str + _formdiv.id,
  7822. "style": {
  7823. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7824. },
  7825. "name": "思维网格",
  7826. "forms": _formdiv,
  7827. "click": function () {
  7828. U.MD.D.I.openApplication(str, obj, info);
  7829. }
  7830. }
  7831. break;
  7832. case "courseDesign":
  7833. _iframe = $$("iframe", {
  7834. "webkitallowfullscreen": "",
  7835. "mozallowfullscreen": "",
  7836. "allowfullscreen": "",
  7837. "frameborder": "no",
  7838. "border": "0",
  7839. "scrolling ": "no",
  7840. "style": {
  7841. "cssText": "border:0; width:100%; height:100%;"
  7842. },
  7843. "src": "/course-design-vue"
  7844. })
  7845. _box.appendChild(_iframe);
  7846. _box.appendChild(_jie);
  7847. _formdiv = new U.UF.UI.form(
  7848. "项目设计",
  7849. _box, {
  7850. "id": "courseDesign" + cid + stage + task + tool,
  7851. "style": {
  7852. "width": "90%",
  7853. "height": "90%",
  7854. "overflow": 'hidden'
  7855. },
  7856. "onresize": function () { }
  7857. }, {
  7858. closecallback: function () { }
  7859. }, {
  7860. "style": {
  7861. "height": "36px"
  7862. }
  7863. }).form; //创建窗体
  7864. _taskbar = {
  7865. "id": str + _formdiv.id,
  7866. "style": {
  7867. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7868. },
  7869. "name": "项目设计",
  7870. "forms": _formdiv,
  7871. "click": function () {
  7872. U.MD.D.I.openApplication(str, obj, info);
  7873. }
  7874. }
  7875. break;
  7876. }
  7877. const script1 = document.createElement("script");
  7878. script1.type = "text/javascript";
  7879. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7880. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7881. const script2 = document.createElement("script");
  7882. script2.type = "text/javascript";
  7883. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7884. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7885. const script3 = document.createElement("script");
  7886. script3.type = "text/javascript";
  7887. script3.charset = "UTF-8";
  7888. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7889. const script4 = document.createElement("script");
  7890. script4.type = "text/javascript";
  7891. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7892. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7893. if (_iframe) {
  7894. if (str == 'doc') {
  7895. _iframe = _formdiv.querySelector('iframe')
  7896. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7897. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7898. _iframe.contentWindow.document.body.appendChild(script1);
  7899. _iframe.contentWindow.document.body.appendChild(script2);
  7900. // _iframe.contentWindow.document.body.appendChild(script3);
  7901. _iframe.contentWindow.document.body.appendChild(script4);
  7902. })
  7903. if (onloadListener) {
  7904. _iframe.contentDocument.location.reload()
  7905. } else {
  7906. _iframe.contentDocument.location.reload()
  7907. }
  7908. } else if (str == 'courseDesign') {
  7909. U.UF.DL.iframeLoad(_iframe, function () {
  7910. // _iframe.contentWindow.U.MD.O.W.load();
  7911. // _iframe.contentWindow.document.body.appendChild(script1);
  7912. _iframe.contentWindow.document.body.appendChild(script2);
  7913. _iframe.contentWindow.document.body.appendChild(script4);
  7914. })
  7915. } else if (str == 'mind') {
  7916. _iframe = _formdiv.querySelector('iframe')
  7917. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7918. //
  7919. _iframe.contentWindow.document.body.appendChild(script1);
  7920. _iframe.contentWindow.document.body.appendChild(script2);
  7921. _iframe.contentWindow.document.body.appendChild(script4);
  7922. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7923. })
  7924. if (onloadListener) {
  7925. _iframe.contentDocument.location.reload()
  7926. } else {
  7927. _iframe.contentDocument.location.reload()
  7928. }
  7929. } else if (str == 'whiteboard') {
  7930. _iframe = _formdiv.querySelector('iframe')
  7931. let onloadListener = _iframe.onload = () => {
  7932. _iframe.contentWindow.document.body.appendChild(script1);
  7933. _iframe.contentWindow.document.body.appendChild(script2);
  7934. _iframe.contentWindow.document.body.appendChild(script4);
  7935. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7936. };
  7937. // if (onloadListener) {
  7938. // try {
  7939. // _iframe.src += "?cocorobo="+new Date().getTime()
  7940. // _iframe.contentWindow.document.location.reload()
  7941. // } catch (error) {
  7942. // }
  7943. // } else {
  7944. // _iframe.contentDocument.location.reload()
  7945. // }
  7946. } else {
  7947. _iframe.onload = () => {
  7948. _iframe.contentWindow.document.body.appendChild(script1);
  7949. _iframe.contentWindow.document.body.appendChild(script2);
  7950. // _iframe.contentWindow.document.body.appendChild(script3);
  7951. _iframe.contentWindow.document.body.appendChild(script4);
  7952. };
  7953. }
  7954. _jie.onclick = async () => {
  7955. let text = ''
  7956. if (aTool == 1) {
  7957. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7958. } else if (aTool == 6) {
  7959. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7960. } else if (aTool == 3) {
  7961. text = await U.MD.D.I.getEditorContent(_iframe);
  7962. }
  7963. _loading.style.display = 'flex'
  7964. console.log(_loading);
  7965. var _ajs = _iframe.contentWindow.document.createElement("script");
  7966. _ajs.type = "text/javascript";
  7967. _ajs.innerHTML =
  7968. // 'console.log(' + _loading + ');\n' +
  7969. 'var _js = document.createElement("script");\n' +
  7970. '_js.type="text/javascript";\n' +
  7971. '_js.charset="UTF-8";\n' +
  7972. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7973. "_js.onload = function(){\n" +
  7974. ' var a = document.getElementsByTagName("img")\n' +
  7975. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7976. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7977. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7978. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7979. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7980. "beforeUpload_shishi(file," +
  7981. "'" +
  7982. _userid +
  7983. "'" +
  7984. ", " +
  7985. "'" +
  7986. _cid +
  7987. "'" +
  7988. ", " +
  7989. "'" +
  7990. _stage +
  7991. "'" +
  7992. ", " +
  7993. "'" +
  7994. _task +
  7995. "'" +
  7996. ", " +
  7997. "'" +
  7998. _tool +
  7999. "'" +
  8000. ", " +
  8001. "'" +
  8002. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8003. "'" +
  8004. ", " +
  8005. "'" +
  8006. aTool +
  8007. "'" +
  8008. ", " +
  8009. "`" +
  8010. text +
  8011. "`" +
  8012. ")\n" +
  8013. " });\n" +
  8014. "}\n" +
  8015. "document.head.appendChild(_js);\n";
  8016. _iframe.contentWindow.document.head.appendChild(_ajs);
  8017. }
  8018. }
  8019. //U.MD.D.I.openClick(str);
  8020. //如果有任务栏信息
  8021. // if (_taskbar) {
  8022. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8023. // }
  8024. }
  8025. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8026. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8027. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8028. _userinfo = US.userInfo, //登录用户信息
  8029. _userid = US.userInfo.userid //登录用户id
  8030. let _iframe;
  8031. let _cid = cid,
  8032. _stage = stage,
  8033. _task = task,
  8034. _tool = tool;
  8035. var _jie = $$("div", {
  8036. "style": {
  8037. "position": "absolute",
  8038. "bottom": "50px",
  8039. "right": "50px",
  8040. "zIndex": "9999",
  8041. "backgroundColor": "#2268bc",
  8042. "color": "#fff",
  8043. "padding": "12px 20px",
  8044. "cursor": "pointer",
  8045. "borderRadius": "4px",
  8046. },
  8047. "innerHTML": "提交作业"
  8048. })
  8049. let aTool = ''
  8050. let _loading = document.createElement('div')
  8051. _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;"
  8052. // _loading.id = "";
  8053. let _lchild = document.createElement('div')
  8054. let _limg = document.createElement('img')
  8055. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8056. _limg.style = "width: 26px;margin-right: 10px;"
  8057. _lchild.appendChild(_limg)
  8058. let _lspan = document.createElement('span')
  8059. _lspan.innerHTML = "上传中..."
  8060. _lchild.appendChild(_lspan)
  8061. _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%);"
  8062. _loading.appendChild(_lchild)
  8063. let _box = $$('div', {
  8064. "style": {
  8065. "position": "relative",
  8066. "width": "100%",
  8067. "height": "100%",
  8068. },
  8069. })
  8070. _box.appendChild(_loading)
  8071. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8072. switch (str) {
  8073. case "whiteboard":
  8074. aTool = 1;
  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": "https://beta.iwb.cocorobo.cn/"
  8083. })
  8084. _box.appendChild(_iframe);
  8085. _box.appendChild(_jie);
  8086. _formdiv = new U.UF.UI.form(
  8087. "电子白板",
  8088. _box, {
  8089. "id": "whiteboard" + cid + stage + task + tool,
  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/whiteBoard.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 "mind":
  8116. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  8125. })
  8126. _box.appendChild(_iframe);
  8127. _box.appendChild(_jie);
  8128. _formdiv = new U.UF.UI.form(
  8129. "思维导图",
  8130. _box, { //"/jsmind/example/demo.html"
  8131. "id": "mind" + cid + stage + task + tool,
  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. _taskbar = {
  8146. "id": str + _formdiv.id,
  8147. "style": {
  8148. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8149. },
  8150. "name": "思维导图",
  8151. "forms": _formdiv,
  8152. "click": function () {
  8153. U.MD.D.I.openApplication(str, obj, info);
  8154. }
  8155. }
  8156. break;
  8157. case "MindMap":
  8158. aTool = 3;
  8159. _iframe = $$("iframe", {
  8160. "frameborder": "no",
  8161. "border": "0",
  8162. "scrolling ": "no",
  8163. "style": {
  8164. "cssText": "border:0;width:100%;height:100%"
  8165. },
  8166. "src": "//cloud.cocorobo.cn/mind/"
  8167. })
  8168. _box.appendChild(_iframe);
  8169. _box.appendChild(_jie);
  8170. _formdiv = new U.UF.UI.form(
  8171. "思维导图",
  8172. _box, { //"/jsmind/example/demo.html"
  8173. "id": "mind" + cid + stage + task + tool,
  8174. "style": {
  8175. "width": "90%",
  8176. "height": "90%",
  8177. "overflow": 'hidden'
  8178. },
  8179. "onresize": function () { }
  8180. }, {
  8181. closecallback: function () { }
  8182. }, {
  8183. "style": {
  8184. "height": "36px"
  8185. }
  8186. }).form; //创建窗体
  8187. _taskbar = {
  8188. "id": str + _formdiv.id,
  8189. "style": {
  8190. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8191. },
  8192. "name": "思维导图",
  8193. "forms": _formdiv,
  8194. "click": function () {
  8195. U.MD.D.I.openApplication(str, obj, info);
  8196. }
  8197. }
  8198. break;
  8199. case "doc":
  8200. aTool = 6;
  8201. _iframe = $$("iframe", {
  8202. "frameborder": "no",
  8203. "border": "0",
  8204. "scrolling ": "no",
  8205. "style": {
  8206. "cssText": "border:0;width:100%;height:100%"
  8207. },
  8208. "src": "/Office/Word/WordEditArea.htm"
  8209. })
  8210. _box.appendChild(_iframe);
  8211. _box.appendChild(_jie);
  8212. _formdiv = new U.UF.UI.form(
  8213. "协同文档",
  8214. _box, {
  8215. "id": "doc" + cid + stage + task + tool,
  8216. "style": {
  8217. "width": "90%",
  8218. "height": "90%",
  8219. "overflow": 'hidden'
  8220. },
  8221. "onresize": function () { }
  8222. }, {
  8223. closecallback: function () { }
  8224. }, {
  8225. "style": {
  8226. "height": "36px"
  8227. }
  8228. }).form; //创建窗体
  8229. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8230. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8231. })
  8232. _taskbar = {
  8233. "id": str + _formdiv.id,
  8234. "style": {
  8235. "backgroundImage": "url(/img/icon/doc.png)"
  8236. },
  8237. "name": "协同文档",
  8238. "forms": _formdiv,
  8239. "click": function () {
  8240. U.MD.D.I.openApplication(str, obj, info);
  8241. }
  8242. }
  8243. break;
  8244. case "mindNetwork": //好友打开
  8245. aTool = 7;
  8246. _iframe = $$("iframe", {
  8247. "webkitallowfullscreen": "",
  8248. "mozallowfullscreen": "",
  8249. "allowfullscreen": "",
  8250. "frameborder": "no",
  8251. "border": "0",
  8252. "scrolling ": "no",
  8253. "style": {
  8254. "cssText": "border:0; width:100%; height:100%;"
  8255. },
  8256. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8257. })
  8258. _box.appendChild(_iframe);
  8259. _box.appendChild(_jie);
  8260. _formdiv = new U.UF.UI.form(
  8261. "思维网格",
  8262. _box, {
  8263. "id": "mindNetwork" + cid + stage + task + tool,
  8264. "style": {
  8265. "width": "90%",
  8266. "height": "90%",
  8267. "overflow": 'hidden'
  8268. },
  8269. "onresize": function () { }
  8270. }, {
  8271. closecallback: function () { }
  8272. }, {
  8273. "style": {
  8274. "height": "36px"
  8275. }
  8276. }).form; //创建窗体
  8277. _taskbar = {
  8278. "id": str + _formdiv.id,
  8279. "style": {
  8280. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8281. },
  8282. "name": "思维网格",
  8283. "forms": _formdiv,
  8284. "click": function () {
  8285. U.MD.D.I.openApplication(str, obj, info);
  8286. }
  8287. }
  8288. break;
  8289. case "courseDesign":
  8290. _iframe = $$("iframe", {
  8291. "webkitallowfullscreen": "",
  8292. "mozallowfullscreen": "",
  8293. "allowfullscreen": "",
  8294. "frameborder": "no",
  8295. "border": "0",
  8296. "scrolling ": "no",
  8297. "style": {
  8298. "cssText": "border:0; width:100%; height:100%;"
  8299. },
  8300. "src": "/course-design-vue"
  8301. })
  8302. _box.appendChild(_iframe);
  8303. _box.appendChild(_jie);
  8304. _formdiv = new U.UF.UI.form(
  8305. "项目设计",
  8306. _box, {
  8307. "id": "courseDesign" + cid + stage + task + tool,
  8308. "style": {
  8309. "width": "90%",
  8310. "height": "90%",
  8311. "overflow": 'hidden'
  8312. },
  8313. "onresize": function () { }
  8314. }, {
  8315. closecallback: function () { }
  8316. }, {
  8317. "style": {
  8318. "height": "36px"
  8319. }
  8320. }).form; //创建窗体
  8321. _taskbar = {
  8322. "id": str + _formdiv.id,
  8323. "style": {
  8324. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8325. },
  8326. "name": "项目设计",
  8327. "forms": _formdiv,
  8328. "click": function () {
  8329. U.MD.D.I.openApplication(str, obj, info);
  8330. }
  8331. }
  8332. break;
  8333. }
  8334. const script1 = document.createElement("script");
  8335. script1.type = "text/javascript";
  8336. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8337. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8338. const script2 = document.createElement("script");
  8339. script2.type = "text/javascript";
  8340. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8341. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8342. const script3 = document.createElement("script");
  8343. script3.type = "text/javascript";
  8344. script3.charset = "UTF-8";
  8345. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8346. const script4 = document.createElement("script");
  8347. script4.type = "text/javascript";
  8348. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8349. script4.src = window.origin + "/js/Common/jietu2E.js";
  8350. if (_iframe) {
  8351. if (str == 'doc') {
  8352. _iframe = _formdiv.querySelector('iframe')
  8353. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8354. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8355. _iframe.contentWindow.document.body.appendChild(script1);
  8356. _iframe.contentWindow.document.body.appendChild(script2);
  8357. // _iframe.contentWindow.document.body.appendChild(script3);
  8358. _iframe.contentWindow.document.body.appendChild(script4);
  8359. })
  8360. if (onloadListener) {
  8361. _iframe.contentDocument.location.reload()
  8362. } else {
  8363. _iframe.contentDocument.location.reload()
  8364. }
  8365. } else if (str == 'courseDesign') {
  8366. U.UF.DL.iframeLoad(_iframe, function () {
  8367. // _iframe.contentWindow.U.MD.O.W.load();
  8368. // _iframe.contentWindow.document.body.appendChild(script1);
  8369. _iframe.contentWindow.document.body.appendChild(script2);
  8370. _iframe.contentWindow.document.body.appendChild(script4);
  8371. })
  8372. } else if (str == 'mind') {
  8373. _iframe = _formdiv.querySelector('iframe')
  8374. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8375. //
  8376. _iframe.contentWindow.document.body.appendChild(script1);
  8377. _iframe.contentWindow.document.body.appendChild(script2);
  8378. _iframe.contentWindow.document.body.appendChild(script4);
  8379. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8380. })
  8381. if (onloadListener) {
  8382. _iframe.contentDocument.location.reload()
  8383. } else {
  8384. _iframe.contentDocument.location.reload()
  8385. }
  8386. } else if (str == 'whiteboard') {
  8387. _iframe = _formdiv.querySelector('iframe')
  8388. let onloadListener = _iframe.onload = () => {
  8389. _iframe.contentWindow.document.body.appendChild(script1);
  8390. _iframe.contentWindow.document.body.appendChild(script2);
  8391. _iframe.contentWindow.document.body.appendChild(script4);
  8392. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8393. };
  8394. // if (onloadListener) {
  8395. // try {
  8396. // _iframe.src += "?cocorobo="+new Date().getTime()
  8397. // _iframe.contentWindow.document.location.reload()
  8398. // } catch (error) {
  8399. // }
  8400. // } else {
  8401. // _iframe.contentDocument.location.reload()
  8402. // }
  8403. } else {
  8404. _iframe.onload = () => {
  8405. _iframe.contentWindow.document.body.appendChild(script1);
  8406. _iframe.contentWindow.document.body.appendChild(script2);
  8407. // _iframe.contentWindow.document.body.appendChild(script3);
  8408. _iframe.contentWindow.document.body.appendChild(script4);
  8409. };
  8410. }
  8411. _jie.onclick = async () => {
  8412. let text = ''
  8413. if (aTool == 1) {
  8414. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8415. } else if (aTool == 6) {
  8416. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8417. } else if (aTool == 3) {
  8418. text = await U.MD.D.I.getEditorContent(_iframe);
  8419. }
  8420. _loading.style.display = 'flex'
  8421. console.log(_loading);
  8422. var _ajs = _iframe.contentWindow.document.createElement("script");
  8423. _ajs.type = "text/javascript";
  8424. _ajs.innerHTML =
  8425. // 'console.log(' + _loading + ');\n' +
  8426. 'var _js = document.createElement("script");\n' +
  8427. '_js.type="text/javascript";\n' +
  8428. '_js.charset="UTF-8";\n' +
  8429. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8430. "_js.onload = function(){\n" +
  8431. ' var a = document.getElementsByTagName("img")\n' +
  8432. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8433. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8434. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8435. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8436. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8437. "beforeUpload_shishi(file," +
  8438. "'" +
  8439. _userid +
  8440. "'" +
  8441. ", " +
  8442. "'" +
  8443. _cid +
  8444. "'" +
  8445. ", " +
  8446. "'" +
  8447. _stage +
  8448. "'" +
  8449. ", " +
  8450. "'" +
  8451. _task +
  8452. "'" +
  8453. ", " +
  8454. "'" +
  8455. _tool +
  8456. "'" +
  8457. ", " +
  8458. "'" +
  8459. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8460. "'" +
  8461. ", " +
  8462. "'" +
  8463. aTool +
  8464. "'" +
  8465. ", " +
  8466. "`" +
  8467. text +
  8468. "`" +
  8469. ")\n" +
  8470. " });\n" +
  8471. "}\n" +
  8472. "document.head.appendChild(_js);\n";
  8473. _iframe.contentWindow.document.head.appendChild(_ajs);
  8474. }
  8475. }
  8476. //U.MD.D.I.openClick(str);
  8477. //如果有任务栏信息
  8478. // if (_taskbar) {
  8479. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8480. // }
  8481. }
  8482. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8483. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8484. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8485. _userid = student.userid, //登录用户id
  8486. _username = student.student //用户名字
  8487. let _iframe;
  8488. let _cid = cid,
  8489. _stage = stage,
  8490. _task = task,
  8491. _tool = tool;
  8492. var _jie = $$("div", {
  8493. "style": {
  8494. "position": "absolute",
  8495. "bottom": "50px",
  8496. "right": "50px",
  8497. "zIndex": "9999",
  8498. "backgroundColor": "#2268bc",
  8499. "color": "#fff",
  8500. "padding": "12px 20px",
  8501. "cursor": "pointer",
  8502. "borderRadius": "4px",
  8503. },
  8504. "innerHTML": "提交作业"
  8505. })
  8506. let aTool = ''
  8507. let _loading = document.createElement('div')
  8508. _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;"
  8509. // _loading.id = "";
  8510. let _lchild = document.createElement('div')
  8511. let _limg = document.createElement('img')
  8512. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8513. _limg.style = "width: 26px;margin-right: 10px;"
  8514. _lchild.appendChild(_limg)
  8515. let _lspan = document.createElement('span')
  8516. _lspan.innerHTML = "上传中..."
  8517. _lchild.appendChild(_lspan)
  8518. _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%);"
  8519. _loading.appendChild(_lchild)
  8520. var _box = $$('div', {
  8521. "style": {
  8522. "position": "relative",
  8523. "width": "100%",
  8524. "height": "100%",
  8525. },
  8526. })
  8527. _box.appendChild(_loading)
  8528. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8529. switch (str) {
  8530. case "whiteboard":
  8531. aTool = 1;
  8532. _iframe = $$("iframe", {
  8533. "frameborder": "no",
  8534. "border": "0",
  8535. "scrolling ": "no",
  8536. "style": {
  8537. "cssText": "border:0;width:100%;height:100%"
  8538. },
  8539. "src": "https://beta.iwb.cocorobo.cn/"
  8540. })
  8541. _box.appendChild(_iframe);
  8542. _box.appendChild(_jie);
  8543. _formdiv = new U.UF.UI.form(
  8544. "电子白板-" + _username,
  8545. _box, {
  8546. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8547. "style": {
  8548. "width": "90%",
  8549. "height": "90%",
  8550. "overflow": 'hidden'
  8551. },
  8552. "onresize": function () { }
  8553. }, {
  8554. closecallback: function () { }
  8555. }, {
  8556. "style": {
  8557. "height": "36px"
  8558. }
  8559. }).form; //创建窗体
  8560. _taskbar = {
  8561. "id": str + _formdiv.id,
  8562. "style": {
  8563. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8564. },
  8565. "name": "电子白板",
  8566. "forms": _formdiv,
  8567. "click": function () {
  8568. U.MD.D.I.openApplication(str, obj, info);
  8569. }
  8570. }
  8571. break;
  8572. case "mind":
  8573. aTool = 3;
  8574. _iframe = $$("iframe", {
  8575. "frameborder": "no",
  8576. "border": "0",
  8577. "scrolling ": "no",
  8578. "style": {
  8579. "cssText": "border:0;width:100%;height:100%"
  8580. },
  8581. "src": "/kityminder-editor/dist/index.html"
  8582. })
  8583. _box.appendChild(_iframe);
  8584. _box.appendChild(_jie);
  8585. _formdiv = new U.UF.UI.form(
  8586. "思维导图-" + _username,
  8587. _box, { //"/jsmind/example/demo.html"
  8588. "id": "mind" + cid + stage + task + tool + _userid,
  8589. "style": {
  8590. "width": "90%",
  8591. "height": "90%",
  8592. "overflow": 'hidden'
  8593. },
  8594. "onresize": function () { }
  8595. }, {
  8596. closecallback: function () { }
  8597. }, {
  8598. "style": {
  8599. "height": "36px"
  8600. }
  8601. }).form; //创建窗体
  8602. _taskbar = {
  8603. "id": str + _formdiv.id,
  8604. "style": {
  8605. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8606. },
  8607. "name": "思维导图",
  8608. "forms": _formdiv,
  8609. "click": function () {
  8610. U.MD.D.I.openApplication(str, obj, info);
  8611. }
  8612. }
  8613. break;
  8614. case "MindMap":
  8615. aTool = 3;
  8616. _iframe = $$("iframe", {
  8617. "frameborder": "no",
  8618. "border": "0",
  8619. "scrolling ": "no",
  8620. "style": {
  8621. "cssText": "border:0;width:100%;height:100%"
  8622. },
  8623. "src": "//cloud.cocorobo.cn/mind/"
  8624. })
  8625. _box.appendChild(_iframe);
  8626. _box.appendChild(_jie);
  8627. _formdiv = new U.UF.UI.form(
  8628. "思维导图-" + _username,
  8629. _box, { //"/jsmind/example/demo.html"
  8630. "id": "mind" + cid + stage + task + tool + _userid,
  8631. "style": {
  8632. "width": "90%",
  8633. "height": "90%",
  8634. "overflow": 'hidden'
  8635. },
  8636. "onresize": function () { }
  8637. }, {
  8638. closecallback: function () { }
  8639. }, {
  8640. "style": {
  8641. "height": "36px"
  8642. }
  8643. }).form; //创建窗体
  8644. _taskbar = {
  8645. "id": str + _formdiv.id,
  8646. "style": {
  8647. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8648. },
  8649. "name": "思维导图",
  8650. "forms": _formdiv,
  8651. "click": function () {
  8652. U.MD.D.I.openApplication(str, obj, info);
  8653. }
  8654. }
  8655. break;
  8656. case "doc":
  8657. aTool = 6;
  8658. _iframe = $$("iframe", {
  8659. "frameborder": "no",
  8660. "border": "0",
  8661. "scrolling ": "no",
  8662. "style": {
  8663. "cssText": "border:0;width:100%;height:100%"
  8664. },
  8665. "src": "/Office/Word/WordEditArea.htm"
  8666. })
  8667. _box.appendChild(_iframe);
  8668. _box.appendChild(_jie);
  8669. _formdiv = new U.UF.UI.form(
  8670. "协同文档-" + _username,
  8671. _box, {
  8672. "id": "doc" + cid + stage + task + tool + _userid,
  8673. "style": {
  8674. "width": "90%",
  8675. "height": "90%",
  8676. "overflow": 'hidden'
  8677. },
  8678. "onresize": function () { }
  8679. }, {
  8680. closecallback: function () { }
  8681. }, {
  8682. "style": {
  8683. "height": "36px"
  8684. }
  8685. }).form; //创建窗体
  8686. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8687. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8688. })
  8689. _taskbar = {
  8690. "id": str + _formdiv.id,
  8691. "style": {
  8692. "backgroundImage": "url(/img/icon/doc.png)"
  8693. },
  8694. "name": "协同文档",
  8695. "forms": _formdiv,
  8696. "click": function () {
  8697. U.MD.D.I.openApplication(str, obj, info);
  8698. }
  8699. }
  8700. break;
  8701. case "mindNetwork": //好友打开
  8702. aTool = 7;
  8703. _iframe = $$("iframe", {
  8704. "webkitallowfullscreen": "",
  8705. "mozallowfullscreen": "",
  8706. "allowfullscreen": "",
  8707. "frameborder": "no",
  8708. "border": "0",
  8709. "scrolling ": "no",
  8710. "style": {
  8711. "cssText": "border:0; width:100%; height:100%;"
  8712. },
  8713. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8714. })
  8715. _box.appendChild(_iframe);
  8716. _box.appendChild(_jie);
  8717. _formdiv = new U.UF.UI.form(
  8718. "思维网格-" + _username,
  8719. _box, {
  8720. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8721. "style": {
  8722. "width": "90%",
  8723. "height": "90%",
  8724. "overflow": 'hidden'
  8725. },
  8726. "onresize": function () { }
  8727. }, {
  8728. closecallback: function () { }
  8729. }, {
  8730. "style": {
  8731. "height": "36px"
  8732. }
  8733. }).form; //创建窗体
  8734. _taskbar = {
  8735. "id": str + _formdiv.id,
  8736. "style": {
  8737. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8738. },
  8739. "name": "思维网格",
  8740. "forms": _formdiv,
  8741. "click": function () {
  8742. U.MD.D.I.openApplication(str, obj, info);
  8743. }
  8744. }
  8745. break;
  8746. case "courseDesign":
  8747. _iframe = $$("iframe", {
  8748. "webkitallowfullscreen": "",
  8749. "mozallowfullscreen": "",
  8750. "allowfullscreen": "",
  8751. "frameborder": "no",
  8752. "border": "0",
  8753. "scrolling ": "no",
  8754. "style": {
  8755. "cssText": "border:0; width:100%; height:100%;"
  8756. },
  8757. "src": "/course-design-vue"
  8758. })
  8759. _box.appendChild(_iframe);
  8760. _box.appendChild(_jie);
  8761. _formdiv = new U.UF.UI.form(
  8762. "项目设计-" + _username,
  8763. _box, {
  8764. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8765. "style": {
  8766. "width": "90%",
  8767. "height": "90%",
  8768. "overflow": 'hidden'
  8769. },
  8770. "onresize": function () { }
  8771. }, {
  8772. closecallback: function () { }
  8773. }, {
  8774. "style": {
  8775. "height": "36px"
  8776. }
  8777. }).form; //创建窗体
  8778. _taskbar = {
  8779. "id": str + _formdiv.id,
  8780. "style": {
  8781. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8782. },
  8783. "name": "项目设计",
  8784. "forms": _formdiv,
  8785. "click": function () {
  8786. U.MD.D.I.openApplication(str, obj, info);
  8787. }
  8788. }
  8789. break;
  8790. }
  8791. const script1 = document.createElement("script");
  8792. script1.type = "text/javascript";
  8793. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8794. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8795. const script2 = document.createElement("script");
  8796. script2.type = "text/javascript";
  8797. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8798. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8799. const script3 = document.createElement("script");
  8800. script3.type = "text/javascript";
  8801. script3.charset = "UTF-8";
  8802. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8803. const script4 = document.createElement("script");
  8804. script4.type = "text/javascript";
  8805. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8806. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8807. if (_iframe) {
  8808. if (str == 'doc') {
  8809. _iframe = _formdiv.querySelector('iframe')
  8810. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8811. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8812. _iframe.contentWindow.document.body.appendChild(script1);
  8813. _iframe.contentWindow.document.body.appendChild(script2);
  8814. // _iframe.contentWindow.document.body.appendChild(script3);
  8815. _iframe.contentWindow.document.body.appendChild(script4);
  8816. })
  8817. if (onloadListener) {
  8818. _iframe.contentDocument.location.reload()
  8819. } else {
  8820. _iframe.contentDocument.location.reload()
  8821. }
  8822. } else if (str == 'courseDesign') {
  8823. U.UF.DL.iframeLoad(_iframe, function () {
  8824. // _iframe.contentWindow.U.MD.O.W.load();
  8825. // _iframe.contentWindow.document.body.appendChild(script1);
  8826. _iframe.contentWindow.document.body.appendChild(script2);
  8827. _iframe.contentWindow.document.body.appendChild(script4);
  8828. })
  8829. } else if (str == 'mind') {
  8830. _iframe = _formdiv.querySelector('iframe')
  8831. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8832. //
  8833. _iframe.contentWindow.document.body.appendChild(script1);
  8834. _iframe.contentWindow.document.body.appendChild(script2);
  8835. _iframe.contentWindow.document.body.appendChild(script4);
  8836. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8837. })
  8838. if (onloadListener) {
  8839. _iframe.contentDocument.location.reload()
  8840. } else {
  8841. _iframe.contentDocument.location.reload()
  8842. }
  8843. } else if (str == 'whiteboard') {
  8844. _iframe = _formdiv.querySelector('iframe')
  8845. let onloadListener = _iframe.onload = () => {
  8846. _iframe.contentWindow.document.body.appendChild(script1);
  8847. _iframe.contentWindow.document.body.appendChild(script2);
  8848. _iframe.contentWindow.document.body.appendChild(script4);
  8849. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8850. };
  8851. // if (onloadListener) {
  8852. // try {
  8853. // _iframe.src += "?cocorobo="+new Date().getTime()
  8854. // _iframe.contentWindow.document.location.reload()
  8855. // } catch (error) {
  8856. // }
  8857. // } else {
  8858. // _iframe.contentDocument.location.reload()
  8859. // }
  8860. } else {
  8861. _iframe.onload = () => {
  8862. _iframe.contentWindow.document.body.appendChild(script1);
  8863. _iframe.contentWindow.document.body.appendChild(script2);
  8864. // _iframe.contentWindow.document.body.appendChild(script3);
  8865. _iframe.contentWindow.document.body.appendChild(script4);
  8866. };
  8867. }
  8868. _jie.onclick = async () => {
  8869. let text = ''
  8870. if (aTool == 1) {
  8871. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8872. } else if (aTool == 6) {
  8873. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8874. } else if (aTool == 3) {
  8875. text = await U.MD.D.I.getEditorContent(_iframe);
  8876. }
  8877. _loading.style.display = 'flex'
  8878. console.log(_loading);
  8879. var _ajs = _iframe.contentWindow.document.createElement("script");
  8880. _ajs.type = "text/javascript";
  8881. _ajs.innerHTML =
  8882. // 'console.log(' + _loading + ');\n' +
  8883. 'var _js = document.createElement("script");\n' +
  8884. '_js.type="text/javascript";\n' +
  8885. '_js.charset="UTF-8";\n' +
  8886. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8887. "_js.onload = function(){\n" +
  8888. ' var a = document.getElementsByTagName("img")\n' +
  8889. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8890. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8891. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8892. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8893. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8894. "beforeUpload_shishi(file," +
  8895. "'" +
  8896. _userid +
  8897. "'" +
  8898. ", " +
  8899. "'" +
  8900. _cid +
  8901. "'" +
  8902. ", " +
  8903. "'" +
  8904. _stage +
  8905. "'" +
  8906. ", " +
  8907. "'" +
  8908. _task +
  8909. "'" +
  8910. ", " +
  8911. "'" +
  8912. _tool +
  8913. "'" +
  8914. ", " +
  8915. "'" +
  8916. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8917. "'" +
  8918. ", " +
  8919. "'" +
  8920. aTool +
  8921. "'" +
  8922. ", " +
  8923. "`" +
  8924. text +
  8925. "`" +
  8926. ")\n" +
  8927. " });\n" +
  8928. "}\n" +
  8929. "document.head.appendChild(_js);\n";
  8930. _iframe.contentWindow.document.head.appendChild(_ajs);
  8931. }
  8932. }
  8933. }
  8934. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8935. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8936. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8937. _userid = student.userid, //登录用户id
  8938. _username = student.student //用户名字
  8939. let _iframe;
  8940. let _cid = cid,
  8941. _stage = stage,
  8942. _task = task,
  8943. _tool = tool;
  8944. var _jie = $$("div", {
  8945. "style": {
  8946. "position": "absolute",
  8947. "bottom": "50px",
  8948. "right": "50px",
  8949. "zIndex": "9999",
  8950. "backgroundColor": "#2268bc",
  8951. "color": "#fff",
  8952. "padding": "12px 20px",
  8953. "cursor": "pointer",
  8954. "borderRadius": "4px",
  8955. },
  8956. "innerHTML": "提交作业"
  8957. })
  8958. let aTool = ''
  8959. let _loading = document.createElement('div')
  8960. _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;"
  8961. // _loading.id = "";
  8962. let _lchild = document.createElement('div')
  8963. let _limg = document.createElement('img')
  8964. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8965. _limg.style = "width: 26px;margin-right: 10px;"
  8966. _lchild.appendChild(_limg)
  8967. let _lspan = document.createElement('span')
  8968. _lspan.innerHTML = "上传中..."
  8969. _lchild.appendChild(_lspan)
  8970. _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%);"
  8971. _loading.appendChild(_lchild)
  8972. var _box = $$('div', {
  8973. "style": {
  8974. "position": "relative",
  8975. "width": "100%",
  8976. "height": "100%",
  8977. },
  8978. })
  8979. _box.appendChild(_loading)
  8980. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8981. switch (str) {
  8982. case "whiteboard":
  8983. aTool = 1;
  8984. _iframe = $$("iframe", {
  8985. "frameborder": "no",
  8986. "border": "0",
  8987. "scrolling ": "no",
  8988. "style": {
  8989. "cssText": "border:0;width:100%;height:100%"
  8990. },
  8991. "src": "https://beta.iwb.cocorobo.cn/"
  8992. })
  8993. _box.appendChild(_iframe);
  8994. _box.appendChild(_jie);
  8995. _formdiv = new U.UF.UI.form(
  8996. "电子白板-" + _username,
  8997. _box, {
  8998. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8999. "style": {
  9000. "width": "90%",
  9001. "height": "90%",
  9002. "overflow": 'hidden'
  9003. },
  9004. "onresize": function () { }
  9005. }, {
  9006. closecallback: function () { }
  9007. }, {
  9008. "style": {
  9009. "height": "36px"
  9010. }
  9011. }).form; //创建窗体
  9012. _taskbar = {
  9013. "id": str + _formdiv.id,
  9014. "style": {
  9015. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9016. },
  9017. "name": "电子白板",
  9018. "forms": _formdiv,
  9019. "click": function () {
  9020. U.MD.D.I.openApplication(str, obj, info);
  9021. }
  9022. }
  9023. break;
  9024. case "mind":
  9025. aTool = 3;
  9026. _iframe = $$("iframe", {
  9027. "frameborder": "no",
  9028. "border": "0",
  9029. "scrolling ": "no",
  9030. "style": {
  9031. "cssText": "border:0;width:100%;height:100%"
  9032. },
  9033. "src": "/kityminder-editor/dist/index.html"
  9034. })
  9035. _box.appendChild(_iframe);
  9036. _box.appendChild(_jie);
  9037. _formdiv = new U.UF.UI.form(
  9038. "思维导图-" + _username,
  9039. _box, { //"/jsmind/example/demo.html"
  9040. "id": "mind" + cid + stage + task + tool + _userid,
  9041. "style": {
  9042. "width": "90%",
  9043. "height": "90%",
  9044. "overflow": 'hidden'
  9045. },
  9046. "onresize": function () { }
  9047. }, {
  9048. closecallback: function () { }
  9049. }, {
  9050. "style": {
  9051. "height": "36px"
  9052. }
  9053. }).form; //创建窗体
  9054. _taskbar = {
  9055. "id": str + _formdiv.id,
  9056. "style": {
  9057. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9058. },
  9059. "name": "思维导图",
  9060. "forms": _formdiv,
  9061. "click": function () {
  9062. U.MD.D.I.openApplication(str, obj, info);
  9063. }
  9064. }
  9065. break;
  9066. case "MindMap":
  9067. aTool = 3;
  9068. _iframe = $$("iframe", {
  9069. "frameborder": "no",
  9070. "border": "0",
  9071. "scrolling ": "no",
  9072. "style": {
  9073. "cssText": "border:0;width:100%;height:100%"
  9074. },
  9075. "src": "//cloud.cocorobo.cn/mind/"
  9076. })
  9077. _box.appendChild(_iframe);
  9078. _box.appendChild(_jie);
  9079. _formdiv = new U.UF.UI.form(
  9080. "思维导图-" + _username,
  9081. _box, { //"/jsmind/example/demo.html"
  9082. "id": "mind" + cid + stage + task + tool + _userid,
  9083. "style": {
  9084. "width": "90%",
  9085. "height": "90%",
  9086. "overflow": 'hidden'
  9087. },
  9088. "onresize": function () { }
  9089. }, {
  9090. closecallback: function () { }
  9091. }, {
  9092. "style": {
  9093. "height": "36px"
  9094. }
  9095. }).form; //创建窗体
  9096. _taskbar = {
  9097. "id": str + _formdiv.id,
  9098. "style": {
  9099. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9100. },
  9101. "name": "思维导图",
  9102. "forms": _formdiv,
  9103. "click": function () {
  9104. U.MD.D.I.openApplication(str, obj, info);
  9105. }
  9106. }
  9107. break;
  9108. case "doc":
  9109. aTool = 6;
  9110. _iframe = $$("iframe", {
  9111. "frameborder": "no",
  9112. "border": "0",
  9113. "scrolling ": "no",
  9114. "style": {
  9115. "cssText": "border:0;width:100%;height:100%"
  9116. },
  9117. "src": "/Office/Word/WordEditArea.htm"
  9118. })
  9119. _box.appendChild(_iframe);
  9120. _box.appendChild(_jie);
  9121. _formdiv = new U.UF.UI.form(
  9122. "协同文档-" + _username,
  9123. _box, {
  9124. "id": "doc" + cid + stage + task + tool + _userid,
  9125. "style": {
  9126. "width": "90%",
  9127. "height": "90%",
  9128. "overflow": 'hidden'
  9129. },
  9130. "onresize": function () { }
  9131. }, {
  9132. closecallback: function () { }
  9133. }, {
  9134. "style": {
  9135. "height": "36px"
  9136. }
  9137. }).form; //创建窗体
  9138. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9139. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9140. })
  9141. _taskbar = {
  9142. "id": str + _formdiv.id,
  9143. "style": {
  9144. "backgroundImage": "url(/img/icon/doc.png)"
  9145. },
  9146. "name": "协同文档",
  9147. "forms": _formdiv,
  9148. "click": function () {
  9149. U.MD.D.I.openApplication(str, obj, info);
  9150. }
  9151. }
  9152. break;
  9153. case "mindNetwork": //好友打开
  9154. aTool = 7;
  9155. _iframe = $$("iframe", {
  9156. "webkitallowfullscreen": "",
  9157. "mozallowfullscreen": "",
  9158. "allowfullscreen": "",
  9159. "frameborder": "no",
  9160. "border": "0",
  9161. "scrolling ": "no",
  9162. "style": {
  9163. "cssText": "border:0; width:100%; height:100%;"
  9164. },
  9165. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9166. })
  9167. _box.appendChild(_iframe);
  9168. _box.appendChild(_jie);
  9169. _formdiv = new U.UF.UI.form(
  9170. "思维网格-" + _username,
  9171. _box, {
  9172. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9173. "style": {
  9174. "width": "90%",
  9175. "height": "90%",
  9176. "overflow": 'hidden'
  9177. },
  9178. "onresize": function () { }
  9179. }, {
  9180. closecallback: function () { }
  9181. }, {
  9182. "style": {
  9183. "height": "36px"
  9184. }
  9185. }).form; //创建窗体
  9186. _taskbar = {
  9187. "id": str + _formdiv.id,
  9188. "style": {
  9189. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9190. },
  9191. "name": "思维网格",
  9192. "forms": _formdiv,
  9193. "click": function () {
  9194. U.MD.D.I.openApplication(str, obj, info);
  9195. }
  9196. }
  9197. break;
  9198. case "courseDesign":
  9199. _iframe = $$("iframe", {
  9200. "webkitallowfullscreen": "",
  9201. "mozallowfullscreen": "",
  9202. "allowfullscreen": "",
  9203. "frameborder": "no",
  9204. "border": "0",
  9205. "scrolling ": "no",
  9206. "style": {
  9207. "cssText": "border:0; width:100%; height:100%;"
  9208. },
  9209. "src": "/course-design-vue"
  9210. })
  9211. _box.appendChild(_iframe);
  9212. _box.appendChild(_jie);
  9213. _formdiv = new U.UF.UI.form(
  9214. "项目设计-" + _username,
  9215. _box, {
  9216. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9217. "style": {
  9218. "width": "90%",
  9219. "height": "90%",
  9220. "overflow": 'hidden'
  9221. },
  9222. "onresize": function () { }
  9223. }, {
  9224. closecallback: function () { }
  9225. }, {
  9226. "style": {
  9227. "height": "36px"
  9228. }
  9229. }).form; //创建窗体
  9230. _taskbar = {
  9231. "id": str + _formdiv.id,
  9232. "style": {
  9233. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9234. },
  9235. "name": "项目设计",
  9236. "forms": _formdiv,
  9237. "click": function () {
  9238. U.MD.D.I.openApplication(str, obj, info);
  9239. }
  9240. }
  9241. break;
  9242. }
  9243. const script1 = document.createElement("script");
  9244. script1.type = "text/javascript";
  9245. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9246. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9247. const script2 = document.createElement("script");
  9248. script2.type = "text/javascript";
  9249. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9250. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9251. const script3 = document.createElement("script");
  9252. script3.type = "text/javascript";
  9253. script3.charset = "UTF-8";
  9254. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9255. const script4 = document.createElement("script");
  9256. script4.type = "text/javascript";
  9257. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9258. script4.src = window.origin + "/js/Common/jietu2E.js";
  9259. if (_iframe) {
  9260. if (str == 'doc') {
  9261. _iframe = _formdiv.querySelector('iframe')
  9262. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9263. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9264. _iframe.contentWindow.document.body.appendChild(script1);
  9265. _iframe.contentWindow.document.body.appendChild(script2);
  9266. // _iframe.contentWindow.document.body.appendChild(script3);
  9267. _iframe.contentWindow.document.body.appendChild(script4);
  9268. })
  9269. if (onloadListener) {
  9270. _iframe.contentDocument.location.reload()
  9271. } else {
  9272. _iframe.contentDocument.location.reload()
  9273. }
  9274. } else if (str == 'courseDesign') {
  9275. U.UF.DL.iframeLoad(_iframe, function () {
  9276. // _iframe.contentWindow.U.MD.O.W.load();
  9277. // _iframe.contentWindow.document.body.appendChild(script1);
  9278. _iframe.contentWindow.document.body.appendChild(script2);
  9279. _iframe.contentWindow.document.body.appendChild(script4);
  9280. })
  9281. } else if (str == 'mind') {
  9282. _iframe = _formdiv.querySelector('iframe')
  9283. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9284. //
  9285. _iframe.contentWindow.document.body.appendChild(script1);
  9286. _iframe.contentWindow.document.body.appendChild(script2);
  9287. _iframe.contentWindow.document.body.appendChild(script4);
  9288. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9289. })
  9290. if (onloadListener) {
  9291. _iframe.contentDocument.location.reload()
  9292. } else {
  9293. _iframe.contentDocument.location.reload()
  9294. }
  9295. } else if (str == 'whiteboard') {
  9296. _iframe = _formdiv.querySelector('iframe')
  9297. let onloadListener = _iframe.onload = () => {
  9298. _iframe.contentWindow.document.body.appendChild(script1);
  9299. _iframe.contentWindow.document.body.appendChild(script2);
  9300. _iframe.contentWindow.document.body.appendChild(script4);
  9301. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9302. };
  9303. // if (onloadListener) {
  9304. // try {
  9305. // _iframe.src += "?cocorobo="+new Date().getTime()
  9306. // _iframe.contentWindow.document.location.reload()
  9307. // } catch (error) {
  9308. // }
  9309. // } else {
  9310. // _iframe.contentDocument.location.reload()
  9311. // }
  9312. } else {
  9313. _iframe.onload = () => {
  9314. _iframe.contentWindow.document.body.appendChild(script1);
  9315. _iframe.contentWindow.document.body.appendChild(script2);
  9316. // _iframe.contentWindow.document.body.appendChild(script3);
  9317. _iframe.contentWindow.document.body.appendChild(script4);
  9318. };
  9319. }
  9320. _jie.onclick = async () => {
  9321. let text = ''
  9322. if (aTool == 1) {
  9323. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9324. } else if (aTool == 6) {
  9325. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9326. } else if (aTool == 3) {
  9327. text = await U.MD.D.I.getEditorContent(_iframe);
  9328. }
  9329. _loading.style.display = 'flex'
  9330. console.log(_loading);
  9331. var _ajs = _iframe.contentWindow.document.createElement("script");
  9332. _ajs.type = "text/javascript";
  9333. _ajs.innerHTML =
  9334. // 'console.log(' + _loading + ');\n' +
  9335. 'var _js = document.createElement("script");\n' +
  9336. '_js.type="text/javascript";\n' +
  9337. '_js.charset="UTF-8";\n' +
  9338. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9339. "_js.onload = function(){\n" +
  9340. ' var a = document.getElementsByTagName("img")\n' +
  9341. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9342. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9343. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9344. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9345. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9346. "beforeUpload_shishi(file," +
  9347. "'" +
  9348. _userid +
  9349. "'" +
  9350. ", " +
  9351. "'" +
  9352. _cid +
  9353. "'" +
  9354. ", " +
  9355. "'" +
  9356. _stage +
  9357. "'" +
  9358. ", " +
  9359. "'" +
  9360. _task +
  9361. "'" +
  9362. ", " +
  9363. "'" +
  9364. _tool +
  9365. "'" +
  9366. ", " +
  9367. "'" +
  9368. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9369. "'" +
  9370. ", " +
  9371. "'" +
  9372. aTool +
  9373. "'" +
  9374. ", " +
  9375. "`" +
  9376. text +
  9377. "`" +
  9378. ")\n" +
  9379. " });\n" +
  9380. "}\n" +
  9381. "document.head.appendChild(_js);\n";
  9382. _iframe.contentWindow.document.head.appendChild(_ajs);
  9383. }
  9384. }
  9385. }
  9386. U.MD.D.I.getEditorContent = function (iframe) {
  9387. return new Promise((resolve, reject) => {
  9388. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9389. console.log(content);
  9390. resolve(content)
  9391. });
  9392. });
  9393. }
  9394. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9395. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9396. // if (res.value[0].length > 0) {
  9397. // // resolve(res.value[0][0].text);
  9398. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9399. // $(fileInput).val('');
  9400. // });
  9401. // }
  9402. // }, [], { "type": "GET", "withCredentials": true });
  9403. var xmlhttp;
  9404. var Mac, Sn, DeviceId
  9405. if (window.XMLHttpRequest) {
  9406. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9407. xmlhttp = new XMLHttpRequest();
  9408. } else {
  9409. // IE6, IE5 浏览器执行代码
  9410. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9411. }
  9412. xmlhttp.onreadystatechange = function () {
  9413. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9414. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9415. // resolve(res.value[0][0].text);
  9416. if (type == '2') {
  9417. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9418. } else if (type == '3') {
  9419. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9420. }
  9421. } else {
  9422. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9423. }
  9424. }
  9425. }
  9426. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9427. xmlhttp.send();
  9428. }
  9429. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9430. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9431. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9432. _userinfo = US.userInfo, //登录用户信息
  9433. _userid = US.userInfo.userid //登录用户id
  9434. let _iframe;
  9435. let _cid = cid,
  9436. _stage = stage,
  9437. _task = task,
  9438. _tool = tool;
  9439. var _jie = $$("div", {
  9440. "style": {
  9441. "position": "absolute",
  9442. "bottom": "50px",
  9443. "right": "50px",
  9444. "zIndex": "9999",
  9445. "backgroundColor": "#2268bc",
  9446. "color": "#fff",
  9447. "padding": "12px 20px",
  9448. "cursor": "pointer",
  9449. "borderRadius": "4px",
  9450. },
  9451. "innerHTML": "确认并提交"
  9452. })
  9453. let aTool = ''
  9454. let _loading = document.createElement('div')
  9455. _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;"
  9456. // _loading.id = "";
  9457. let _lchild = document.createElement('div')
  9458. let _limg = document.createElement('img')
  9459. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9460. _limg.style = "width: 26px;margin-right: 10px;"
  9461. _lchild.appendChild(_limg)
  9462. let _lspan = document.createElement('span')
  9463. _lspan.innerHTML = "上传中..."
  9464. _lchild.appendChild(_lspan)
  9465. _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%);"
  9466. _loading.appendChild(_lchild)
  9467. var _box = $$('div', {
  9468. "style": {
  9469. "position": "relative",
  9470. "width": "100%",
  9471. "height": "100%",
  9472. },
  9473. })
  9474. _box.appendChild(_loading)
  9475. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9476. switch (str) {
  9477. case "whiteboard":
  9478. aTool = 1;
  9479. _iframe = $$("iframe", {
  9480. "frameborder": "no",
  9481. "border": "0",
  9482. "scrolling ": "no",
  9483. "style": {
  9484. "cssText": "border:0;width:100%;height:100%"
  9485. },
  9486. "src": "https://beta.iwb.cocorobo.cn/"
  9487. })
  9488. _box.appendChild(_iframe);
  9489. _box.appendChild(_jie);
  9490. _formdiv = new U.UF.UI.form(
  9491. "电子白板",
  9492. _box, {
  9493. "id": "whiteboards" + cid + stage + task + tool,
  9494. "style": {
  9495. "width": "90%",
  9496. "height": "90%",
  9497. "overflow": 'hidden'
  9498. },
  9499. "onresize": function () { }
  9500. }, {
  9501. closecallback: function () { }
  9502. }, {
  9503. "style": {
  9504. "height": "36px"
  9505. }
  9506. }).form; //创建窗体
  9507. _taskbar = {
  9508. "id": str + _formdiv.id,
  9509. "style": {
  9510. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9511. },
  9512. "name": "电子白板",
  9513. "forms": _formdiv,
  9514. "click": function () {
  9515. U.MD.D.I.openApplication(str, obj, info);
  9516. }
  9517. }
  9518. break;
  9519. case "mind":
  9520. aTool = 3;
  9521. _iframe = $$("iframe", {
  9522. "frameborder": "no",
  9523. "border": "0",
  9524. "scrolling ": "no",
  9525. "style": {
  9526. "cssText": "border:0;width:100%;height:100%"
  9527. },
  9528. "src": "/kityminder-editor/dist/index.html"
  9529. });
  9530. _box.appendChild(_iframe);
  9531. _box.appendChild(_jie);
  9532. _formdiv = new U.UF.UI.form(
  9533. "思维导图",
  9534. _box, { //"/jsmind/example/demo.html"
  9535. "id": "minds" + cid + stage + task + tool,
  9536. "style": {
  9537. "width": "90%",
  9538. "height": "90%",
  9539. "overflow": 'hidden'
  9540. },
  9541. "onresize": function () { }
  9542. }, {
  9543. closecallback: function () { }
  9544. }, {
  9545. "style": {
  9546. "height": "36px"
  9547. }
  9548. }).form; //创建窗体
  9549. _taskbar = {
  9550. "id": str + _formdiv.id,
  9551. "style": {
  9552. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9553. },
  9554. "name": "思维导图",
  9555. "forms": _formdiv,
  9556. "click": function () {
  9557. U.MD.D.I.openApplication(str, obj, info);
  9558. }
  9559. }
  9560. break;
  9561. case "doc":
  9562. aTool = 6;
  9563. _iframe = $$("iframe", {
  9564. "frameborder": "no",
  9565. "border": "0",
  9566. "scrolling ": "no",
  9567. "style": {
  9568. "cssText": "border:0;width:100%;height:100%"
  9569. },
  9570. "src": "/Office/Word/WordEditArea.htm"
  9571. })
  9572. _box.appendChild(_iframe);
  9573. _box.appendChild(_jie);
  9574. _formdiv = new U.UF.UI.form(
  9575. "协同文档",
  9576. _box, {
  9577. "id": "docs" + cid + stage + task + tool,
  9578. "style": {
  9579. "width": "90%",
  9580. "height": "90%",
  9581. "overflow": 'hidden'
  9582. },
  9583. "onresize": function () { }
  9584. }, {
  9585. closecallback: function () { }
  9586. }, {
  9587. "style": {
  9588. "height": "36px"
  9589. }
  9590. }).form; //创建窗体
  9591. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9592. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9593. })
  9594. _taskbar = {
  9595. "id": str + _formdiv.id,
  9596. "style": {
  9597. "backgroundImage": "url(/img/icon/doc.png)"
  9598. },
  9599. "name": "协同文档",
  9600. "forms": _formdiv,
  9601. "click": function () {
  9602. U.MD.D.I.openApplication(str, obj, info);
  9603. }
  9604. }
  9605. break;
  9606. }
  9607. const script1 = document.createElement("script");
  9608. script1.type = "text/javascript";
  9609. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9610. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9611. const script2 = document.createElement("script");
  9612. script2.type = "text/javascript";
  9613. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9614. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9615. const script3 = document.createElement("script");
  9616. script3.type = "text/javascript";
  9617. script3.charset = "UTF-8";
  9618. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9619. const script4 = document.createElement("script");
  9620. script4.type = "text/javascript";
  9621. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9622. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9623. if (_iframe) {
  9624. if (str == 'doc') {
  9625. _iframe = _formdiv.querySelector('iframe')
  9626. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9627. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9628. _iframe.contentWindow.document.body.appendChild(script1);
  9629. _iframe.contentWindow.document.body.appendChild(script2);
  9630. // _iframe.contentWindow.document.body.appendChild(script3);
  9631. _iframe.contentWindow.document.body.appendChild(script4);
  9632. })
  9633. if (onloadListener) {
  9634. _iframe.contentDocument.location.reload()
  9635. } else {
  9636. _iframe.contentDocument.location.reload()
  9637. }
  9638. } else if (str == 'mind') {
  9639. _iframe = _formdiv.querySelector('iframe')
  9640. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9641. _iframe.contentWindow.document.body.appendChild(script1);
  9642. _iframe.contentWindow.document.body.appendChild(script2);
  9643. _iframe.contentWindow.document.body.appendChild(script4);
  9644. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9645. })
  9646. if (onloadListener) {
  9647. _iframe.contentDocument.location.reload()
  9648. } else {
  9649. _iframe.contentDocument.location.reload()
  9650. }
  9651. } else {
  9652. _iframe.onload = () => {
  9653. _iframe.contentWindow.document.body.appendChild(script1);
  9654. _iframe.contentWindow.document.body.appendChild(script2);
  9655. // _iframe.contentWindow.document.body.appendChild(script3);
  9656. _iframe.contentWindow.document.body.appendChild(script4);
  9657. };
  9658. }
  9659. _jie.onclick = async () => {
  9660. let text = ''
  9661. if (aTool == 6) {
  9662. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9663. } else if (aTool == 3) {
  9664. text = await U.MD.D.I.getEditorContent(_iframe);
  9665. }
  9666. _loading.style.display = 'flex'
  9667. console.log(_loading);
  9668. var _ajs = _iframe.contentWindow.document.createElement("script");
  9669. _ajs.type = "text/javascript";
  9670. _ajs.innerHTML =
  9671. // 'console.log(' + _loading + ');\n' +
  9672. 'var _js = document.createElement("script");\n' +
  9673. '_js.type="text/javascript";\n' +
  9674. '_js.charset="UTF-8";\n' +
  9675. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9676. "_js.onload = function(){\n" +
  9677. ' var a = document.getElementsByTagName("img")\n' +
  9678. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9679. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9680. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9681. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9682. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9683. "beforeUpload_shishi(file," +
  9684. "'" +
  9685. _userid +
  9686. "'" +
  9687. ", " +
  9688. "'" +
  9689. _cid +
  9690. "'" +
  9691. ", " +
  9692. "'" +
  9693. _stage +
  9694. "'" +
  9695. ", " +
  9696. "'" +
  9697. _task +
  9698. "'" +
  9699. ", " +
  9700. "'" +
  9701. _tool +
  9702. "'" +
  9703. ", " +
  9704. "'" +
  9705. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9706. "'" +
  9707. ", " +
  9708. "'" +
  9709. aTool +
  9710. "'" +
  9711. ", " +
  9712. "`" +
  9713. text +
  9714. "`" +
  9715. ")\n" +
  9716. " });\n" +
  9717. "}\n" +
  9718. "document.head.appendChild(_js);\n";
  9719. _iframe.contentWindow.document.head.appendChild(_ajs);
  9720. }
  9721. }
  9722. //U.MD.D.I.openClick(str);
  9723. //如果有任务栏信息
  9724. // if (_taskbar) {
  9725. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9726. // }
  9727. }
  9728. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9729. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9730. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9731. _userinfo = US.userInfo, //登录用户信息
  9732. _userid = US.userInfo.userid //登录用户id
  9733. let _iframe;
  9734. let _cid = cid,
  9735. _stage = stage,
  9736. _task = task,
  9737. _tool = tool;
  9738. var _jie = $$("div", {
  9739. "style": {
  9740. "position": "absolute",
  9741. "bottom": "50px",
  9742. "right": "50px",
  9743. "zIndex": "9999",
  9744. "backgroundColor": "#2268bc",
  9745. "color": "#fff",
  9746. "padding": "12px 20px",
  9747. "cursor": "pointer",
  9748. "borderRadius": "4px",
  9749. },
  9750. "innerHTML": "确认并提交"
  9751. })
  9752. let aTool = ''
  9753. let _loading = document.createElement('div')
  9754. _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;"
  9755. // _loading.id = "";
  9756. let _lchild = document.createElement('div')
  9757. let _limg = document.createElement('img')
  9758. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9759. _limg.style = "width: 26px;margin-right: 10px;"
  9760. _lchild.appendChild(_limg)
  9761. let _lspan = document.createElement('span')
  9762. _lspan.innerHTML = "上传中..."
  9763. _lchild.appendChild(_lspan)
  9764. _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%);"
  9765. _loading.appendChild(_lchild)
  9766. var _box = $$('div', {
  9767. "style": {
  9768. "position": "relative",
  9769. "width": "100%",
  9770. "height": "100%",
  9771. },
  9772. })
  9773. _box.appendChild(_loading)
  9774. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9775. switch (str) {
  9776. case "whiteboard":
  9777. aTool = 1;
  9778. _iframe = $$("iframe", {
  9779. "frameborder": "no",
  9780. "border": "0",
  9781. "scrolling ": "no",
  9782. "style": {
  9783. "cssText": "border:0;width:100%;height:100%"
  9784. },
  9785. "src": "https://beta.iwb.cocorobo.cn/"
  9786. })
  9787. _box.appendChild(_iframe);
  9788. _box.appendChild(_jie);
  9789. _formdiv = new U.UF.UI.form(
  9790. "电子白板",
  9791. _box, {
  9792. "id": "whiteboards" + cid + stage + task + tool,
  9793. "style": {
  9794. "width": "90%",
  9795. "height": "90%",
  9796. "overflow": 'hidden'
  9797. },
  9798. "onresize": function () { }
  9799. }, {
  9800. closecallback: function () { }
  9801. }, {
  9802. "style": {
  9803. "height": "36px"
  9804. }
  9805. }).form; //创建窗体
  9806. _taskbar = {
  9807. "id": str + _formdiv.id,
  9808. "style": {
  9809. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9810. },
  9811. "name": "电子白板",
  9812. "forms": _formdiv,
  9813. "click": function () {
  9814. U.MD.D.I.openApplication(str, obj, info);
  9815. }
  9816. }
  9817. break;
  9818. case "mind":
  9819. aTool = 3;
  9820. _iframe = $$("iframe", {
  9821. "frameborder": "no",
  9822. "border": "0",
  9823. "scrolling ": "no",
  9824. "style": {
  9825. "cssText": "border:0;width:100%;height:100%"
  9826. },
  9827. "src": "/kityminder-editor/dist/index.html"
  9828. });
  9829. _box.appendChild(_iframe);
  9830. _box.appendChild(_jie);
  9831. _formdiv = new U.UF.UI.form(
  9832. "思维导图",
  9833. _box, { //"/jsmind/example/demo.html"
  9834. "id": "minds" + cid + stage + task + tool,
  9835. "style": {
  9836. "width": "90%",
  9837. "height": "90%",
  9838. "overflow": 'hidden'
  9839. },
  9840. "onresize": function () { }
  9841. }, {
  9842. closecallback: function () { }
  9843. }, {
  9844. "style": {
  9845. "height": "36px"
  9846. }
  9847. }).form; //创建窗体
  9848. _taskbar = {
  9849. "id": str + _formdiv.id,
  9850. "style": {
  9851. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9852. },
  9853. "name": "思维导图",
  9854. "forms": _formdiv,
  9855. "click": function () {
  9856. U.MD.D.I.openApplication(str, obj, info);
  9857. }
  9858. }
  9859. break;
  9860. case "doc":
  9861. aTool = 6;
  9862. _iframe = $$("iframe", {
  9863. "frameborder": "no",
  9864. "border": "0",
  9865. "scrolling ": "no",
  9866. "style": {
  9867. "cssText": "border:0;width:100%;height:100%"
  9868. },
  9869. "src": "/Office/Word/WordEditArea.htm"
  9870. })
  9871. _box.appendChild(_iframe);
  9872. _box.appendChild(_jie);
  9873. _formdiv = new U.UF.UI.form(
  9874. "协同文档",
  9875. _box, {
  9876. "id": "docs" + cid + stage + task + tool,
  9877. "style": {
  9878. "width": "90%",
  9879. "height": "90%",
  9880. "overflow": 'hidden'
  9881. },
  9882. "onresize": function () { }
  9883. }, {
  9884. closecallback: function () { }
  9885. }, {
  9886. "style": {
  9887. "height": "36px"
  9888. }
  9889. }).form; //创建窗体
  9890. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9891. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9892. })
  9893. _taskbar = {
  9894. "id": str + _formdiv.id,
  9895. "style": {
  9896. "backgroundImage": "url(/img/icon/doc.png)"
  9897. },
  9898. "name": "协同文档",
  9899. "forms": _formdiv,
  9900. "click": function () {
  9901. U.MD.D.I.openApplication(str, obj, info);
  9902. }
  9903. }
  9904. break;
  9905. }
  9906. const script1 = document.createElement("script");
  9907. script1.type = "text/javascript";
  9908. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9909. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9910. const script2 = document.createElement("script");
  9911. script2.type = "text/javascript";
  9912. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9913. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9914. const script3 = document.createElement("script");
  9915. script3.type = "text/javascript";
  9916. script3.charset = "UTF-8";
  9917. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9918. const script4 = document.createElement("script");
  9919. script4.type = "text/javascript";
  9920. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9921. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9922. if (_iframe) {
  9923. if (str == 'doc') {
  9924. _iframe = _formdiv.querySelector('iframe')
  9925. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9926. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9927. _iframe.contentWindow.document.body.appendChild(script1);
  9928. _iframe.contentWindow.document.body.appendChild(script2);
  9929. // _iframe.contentWindow.document.body.appendChild(script3);
  9930. _iframe.contentWindow.document.body.appendChild(script4);
  9931. })
  9932. if (onloadListener) {
  9933. _iframe.contentDocument.location.reload()
  9934. } else {
  9935. _iframe.contentDocument.location.reload()
  9936. }
  9937. } else if (str == 'mind') {
  9938. _iframe = _formdiv.querySelector('iframe')
  9939. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9940. _iframe.contentWindow.document.body.appendChild(script1);
  9941. _iframe.contentWindow.document.body.appendChild(script2);
  9942. _iframe.contentWindow.document.body.appendChild(script4);
  9943. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9944. })
  9945. if (onloadListener) {
  9946. _iframe.contentDocument.location.reload()
  9947. } else {
  9948. _iframe.contentDocument.location.reload()
  9949. }
  9950. } else {
  9951. _iframe.onload = () => {
  9952. _iframe.contentWindow.document.body.appendChild(script1);
  9953. _iframe.contentWindow.document.body.appendChild(script2);
  9954. // _iframe.contentWindow.document.body.appendChild(script3);
  9955. _iframe.contentWindow.document.body.appendChild(script4);
  9956. };
  9957. }
  9958. _jie.onclick = async () => {
  9959. let text = ''
  9960. if (aTool == 6) {
  9961. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9962. } else if (aTool == 3) {
  9963. text = await U.MD.D.I.getEditorContent(_iframe);
  9964. }
  9965. _loading.style.display = 'flex'
  9966. console.log(_loading);
  9967. var _ajs = _iframe.contentWindow.document.createElement("script");
  9968. _ajs.type = "text/javascript";
  9969. _ajs.innerHTML =
  9970. // 'console.log(' + _loading + ');\n' +
  9971. 'var _js = document.createElement("script");\n' +
  9972. '_js.type="text/javascript";\n' +
  9973. '_js.charset="UTF-8";\n' +
  9974. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9975. "_js.onload = function(){\n" +
  9976. ' var a = document.getElementsByTagName("img")\n' +
  9977. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9978. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9979. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9980. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9981. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9982. "beforeUpload_shishi(file," +
  9983. "'" +
  9984. _userid +
  9985. "'" +
  9986. ", " +
  9987. "'" +
  9988. _cid +
  9989. "'" +
  9990. ", " +
  9991. "'" +
  9992. _stage +
  9993. "'" +
  9994. ", " +
  9995. "'" +
  9996. _task +
  9997. "'" +
  9998. ", " +
  9999. "'" +
  10000. _tool +
  10001. "'" +
  10002. ", " +
  10003. "'" +
  10004. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10005. "'" +
  10006. ", " +
  10007. "'" +
  10008. aTool +
  10009. "'" +
  10010. ", " +
  10011. "`" +
  10012. text +
  10013. "`" +
  10014. ")\n" +
  10015. " });\n" +
  10016. "}\n" +
  10017. "document.head.appendChild(_js);\n";
  10018. _iframe.contentWindow.document.head.appendChild(_ajs);
  10019. }
  10020. }
  10021. //U.MD.D.I.openClick(str);
  10022. //如果有任务栏信息
  10023. // if (_taskbar) {
  10024. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10025. // }
  10026. }
  10027. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10028. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10029. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10030. _userinfo = US.userInfo, //登录用户信息
  10031. _userid = US.userInfo.userid //登录用户id
  10032. let _iframe;
  10033. let _cid = cid,
  10034. _stage = stage,
  10035. _task = task,
  10036. _tool = tool;
  10037. var _jie = $$("div", {
  10038. "style": {
  10039. "position": "absolute",
  10040. "bottom": "50px",
  10041. "right": "50px",
  10042. "zIndex": "9999",
  10043. "backgroundColor": "#2268bc",
  10044. "color": "#fff",
  10045. "padding": "12px 20px",
  10046. "cursor": "pointer",
  10047. "borderRadius": "4px",
  10048. },
  10049. "innerHTML": "上传模板"
  10050. })
  10051. let aTool = ''
  10052. let _loading = document.createElement('div')
  10053. _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;"
  10054. // _loading.id = "";
  10055. let _lchild = document.createElement('div')
  10056. let _limg = document.createElement('img')
  10057. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10058. _limg.style = "width: 26px;margin-right: 10px;"
  10059. _lchild.appendChild(_limg)
  10060. let _lspan = document.createElement('span')
  10061. _lspan.innerHTML = "上传中..."
  10062. _lchild.appendChild(_lspan)
  10063. _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%);"
  10064. _loading.appendChild(_lchild)
  10065. var _box = $$('div', {
  10066. "style": {
  10067. "position": "relative",
  10068. "width": "100%",
  10069. "height": "100%",
  10070. },
  10071. })
  10072. _box.appendChild(_loading)
  10073. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10074. switch (str) {
  10075. case "whiteboard":
  10076. aTool = 1;
  10077. _iframe = $$("iframe", {
  10078. "frameborder": "no",
  10079. "border": "0",
  10080. "scrolling ": "no",
  10081. "style": {
  10082. "cssText": "border:0;width:100%;height:100%"
  10083. },
  10084. "src": "https://beta.iwb.cocorobo.cn/"
  10085. })
  10086. _box.appendChild(_iframe);
  10087. _box.appendChild(_jie);
  10088. _formdiv = new U.UF.UI.form(
  10089. "电子白板",
  10090. _box, {
  10091. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10092. "style": {
  10093. "width": "90%",
  10094. "height": "90%",
  10095. "overflow": 'hidden'
  10096. },
  10097. "onresize": function () { }
  10098. }, {
  10099. closecallback: function () { }
  10100. }, {
  10101. "style": {
  10102. "height": "36px"
  10103. }
  10104. }).form; //创建窗体
  10105. _taskbar = {
  10106. "id": str + _formdiv.id,
  10107. "style": {
  10108. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10109. },
  10110. "name": "电子白板",
  10111. "forms": _formdiv,
  10112. "click": function () {
  10113. U.MD.D.I.openApplication(str, obj, info);
  10114. }
  10115. }
  10116. break;
  10117. case "mind":
  10118. aTool = 3;
  10119. _iframe = $$("iframe", {
  10120. "frameborder": "no",
  10121. "border": "0",
  10122. "scrolling ": "no",
  10123. "style": {
  10124. "cssText": "border:0;width:100%;height:100%"
  10125. },
  10126. "src": "/kityminder-editor/dist/index.html"
  10127. });
  10128. _box.appendChild(_iframe);
  10129. _box.appendChild(_jie);
  10130. _formdiv = new U.UF.UI.form(
  10131. "思维导图",
  10132. _box, { //"/jsmind/example/demo.html"
  10133. "id": "minds_Yu" + cid + stage + task + tool,
  10134. "style": {
  10135. "width": "90%",
  10136. "height": "90%",
  10137. "overflow": 'hidden'
  10138. },
  10139. "onresize": function () { }
  10140. }, {
  10141. closecallback: function () { }
  10142. }, {
  10143. "style": {
  10144. "height": "36px"
  10145. }
  10146. }).form; //创建窗体
  10147. _taskbar = {
  10148. "id": str + _formdiv.id,
  10149. "style": {
  10150. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10151. },
  10152. "name": "思维导图",
  10153. "forms": _formdiv,
  10154. "click": function () {
  10155. U.MD.D.I.openApplication(str, obj, info);
  10156. }
  10157. }
  10158. break;
  10159. case "doc":
  10160. aTool = 6;
  10161. _iframe = $$("iframe", {
  10162. "frameborder": "no",
  10163. "border": "0",
  10164. "scrolling ": "no",
  10165. "style": {
  10166. "cssText": "border:0;width:100%;height:100%"
  10167. },
  10168. "src": "/Office/Word/WordEditArea.htm"
  10169. })
  10170. _box.appendChild(_iframe);
  10171. _box.appendChild(_jie);
  10172. _formdiv = new U.UF.UI.form(
  10173. "协同文档",
  10174. _box, {
  10175. "id": "docs_Yu" + cid + stage + task + tool,
  10176. "style": {
  10177. "width": "90%",
  10178. "height": "90%",
  10179. "overflow": 'hidden'
  10180. },
  10181. "onresize": function () { }
  10182. }, {
  10183. closecallback: function () { }
  10184. }, {
  10185. "style": {
  10186. "height": "36px"
  10187. }
  10188. }).form; //创建窗体
  10189. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10190. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10191. })
  10192. _taskbar = {
  10193. "id": str + _formdiv.id,
  10194. "style": {
  10195. "backgroundImage": "url(/img/icon/doc.png)"
  10196. },
  10197. "name": "协同文档",
  10198. "forms": _formdiv,
  10199. "click": function () {
  10200. U.MD.D.I.openApplication(str, obj, info);
  10201. }
  10202. }
  10203. break;
  10204. case "CocoPi":
  10205. aTool = 57;
  10206. _iframe = $$("iframe", {
  10207. "allowpaymentrequest": "allowpaymentrequest",
  10208. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10209. "webkitallowfullscreen": "",
  10210. "mozallowfullscreen": "",
  10211. "frameborder": "no",
  10212. "border": "0",
  10213. "scrolling ": "no",
  10214. "style": {
  10215. "cssText": "border:0;width:100%;height:100%"
  10216. },
  10217. "src": "https://pi.cocorobo.cn/"
  10218. })
  10219. _box.appendChild(_iframe);
  10220. _box.appendChild(_jie);
  10221. _formdiv = new U.UF.UI.form(
  10222. "CocoPi",
  10223. _box, {
  10224. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10225. "style": {
  10226. "width": "90%",
  10227. "height": "90%",
  10228. "overflow": 'hidden'
  10229. },
  10230. "onresize": function () { }
  10231. }, {
  10232. closecallback: function () { }
  10233. }, {
  10234. "style": {
  10235. "height": "36px"
  10236. }
  10237. }).form; //创建窗体
  10238. _taskbar = {
  10239. "id": str + _formdiv.id,
  10240. "style": {
  10241. "backgroundImage": "url(/img/icon/cocopi.png)"
  10242. },
  10243. "name": "CocoPi",
  10244. "forms": _formdiv,
  10245. "click": function () {
  10246. U.MD.D.I.openApplication(str, obj, info);
  10247. }
  10248. }
  10249. break;
  10250. }
  10251. if (_iframe) {
  10252. if (str == 'doc') {
  10253. _iframe = _formdiv.querySelector('iframe')
  10254. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10255. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10256. })
  10257. if (onloadListener) {
  10258. _iframe.contentDocument.location.reload()
  10259. } else {
  10260. _iframe.contentDocument.location.reload()
  10261. }
  10262. } else if (str == 'mind') {
  10263. _iframe = _formdiv.querySelector('iframe')
  10264. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10265. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10266. })
  10267. if (onloadListener) {
  10268. _iframe.contentDocument.location.reload()
  10269. } else {
  10270. _iframe.contentDocument.location.reload()
  10271. }
  10272. } else if (str == 'whiteboard') {
  10273. _iframe = _formdiv.querySelector('iframe')
  10274. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10275. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10276. })
  10277. // if (onloadListener) {
  10278. // try {
  10279. // _iframe.src += "?cocorobo="+new Date().getTime()
  10280. // _iframe.contentWindow.document.location.reload()
  10281. // } catch (error) {
  10282. // }
  10283. // } else {
  10284. // _iframe.contentDocument.location.reload()
  10285. // }
  10286. } else if (str == 'CocoPi') {
  10287. _iframe = _formdiv.querySelector('iframe')
  10288. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10289. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10290. })
  10291. if (onloadListener) {
  10292. _iframe.contentDocument.location.reload()
  10293. } else {
  10294. _iframe.contentDocument.location.reload()
  10295. }
  10296. } else {
  10297. _iframe.onload = () => { };
  10298. }
  10299. _jie.onclick = async () => {
  10300. let text = ''
  10301. let type = '2'
  10302. if (aTool == 1) {
  10303. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10304. type = '3'
  10305. } else if (aTool == 6) {
  10306. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10307. type = '1'
  10308. } else if (aTool == 3) {
  10309. text = await U.MD.D.I.getEditorContent(_iframe);
  10310. type = '2'
  10311. } else if (aTool == 57) {
  10312. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10313. type = '4'
  10314. }
  10315. _loading.style.display = 'flex'
  10316. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10317. }
  10318. }
  10319. //U.MD.D.I.openClick(str);
  10320. //如果有任务栏信息
  10321. // if (_taskbar) {
  10322. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10323. // }
  10324. }
  10325. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10326. var xmlhttp;
  10327. var Mac, Sn, DeviceId
  10328. if (window.XMLHttpRequest) {
  10329. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10330. xmlhttp = new XMLHttpRequest();
  10331. } else {
  10332. // IE6, IE5 浏览器执行代码
  10333. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10334. }
  10335. xmlhttp.onreadystatechange = function () {
  10336. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10337. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10338. // resolve(res.value[0][0].text);
  10339. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10340. }
  10341. }
  10342. }
  10343. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10344. xmlhttp.send();
  10345. }
  10346. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10347. var xmlhttp;
  10348. var Mac, Sn, DeviceId
  10349. if (window.XMLHttpRequest) {
  10350. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10351. xmlhttp = new XMLHttpRequest();
  10352. } else {
  10353. // IE6, IE5 浏览器执行代码
  10354. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10355. }
  10356. xmlhttp.onreadystatechange = function () {
  10357. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10358. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10359. // resolve(res.value[0][0].text);
  10360. if (type == '2') {
  10361. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10362. } else if (type == '3') {
  10363. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10364. } else if (type == '4') {
  10365. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10366. }
  10367. } else {
  10368. if (type == '2') {
  10369. iframe.contentWindow.editor.minder.importData('json', '')
  10370. } else if (type == '3') {
  10371. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10372. } else if (type == '4') {
  10373. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10374. }
  10375. }
  10376. }
  10377. }
  10378. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10379. xmlhttp.send();
  10380. }
  10381. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10382. var xmlhttp;
  10383. var Mac, Sn, DeviceId
  10384. if (window.XMLHttpRequest) {
  10385. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10386. xmlhttp = new XMLHttpRequest();
  10387. } else {
  10388. // IE6, IE5 浏览器执行代码
  10389. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10390. }
  10391. xmlhttp.onreadystatechange = function () {
  10392. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10393. if (xmlhttp.response) {
  10394. // resolve(res.value[0][0].text);
  10395. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10396. // $(fileInput).val('');
  10397. // });
  10398. span.innerHTML = '上传成功'
  10399. setTimeout(() => {
  10400. loading.style.display = 'none'
  10401. }, 1000);
  10402. }
  10403. }
  10404. }
  10405. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10406. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10407. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10408. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10409. // 设置请求头,表示请求体的编码格式
  10410. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10411. // 设置请求体,使用url-encoded格式的数据
  10412. }
  10413. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10414. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10415. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10416. _userinfo = US.userInfo, //登录用户信息
  10417. _userid = US.userInfo.userid //登录用户id
  10418. let _iframe;
  10419. let _cid = cid,
  10420. _stage = stage,
  10421. _task = task,
  10422. _tool = tool;
  10423. var _jie = $$("div", {
  10424. "style": {
  10425. "position": "absolute",
  10426. "bottom": "50px",
  10427. "right": "50px",
  10428. "zIndex": "9999",
  10429. "backgroundColor": "#2268bc",
  10430. "color": "#fff",
  10431. "padding": "12px 20px",
  10432. "cursor": "pointer",
  10433. "borderRadius": "4px",
  10434. },
  10435. "innerHTML": "提交作业"
  10436. })
  10437. let aTool = ''
  10438. let _loading = document.createElement('div')
  10439. _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;"
  10440. // _loading.id = "";
  10441. let _lchild = document.createElement('div')
  10442. let _limg = document.createElement('img')
  10443. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10444. _limg.style = "width: 26px;margin-right: 10px;"
  10445. _lchild.appendChild(_limg)
  10446. let _lspan = document.createElement('span')
  10447. _lspan.innerHTML = "上传中..."
  10448. _lchild.appendChild(_lspan)
  10449. _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%);"
  10450. _loading.appendChild(_lchild)
  10451. var _box = $$('div', {
  10452. "style": {
  10453. "position": "relative",
  10454. "width": "100%",
  10455. "height": "100%",
  10456. },
  10457. })
  10458. _box.appendChild(_loading)
  10459. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10460. switch (str) {
  10461. case "CocoPi":
  10462. aTool = 57;
  10463. _iframe = $$("iframe", {
  10464. "allowpaymentrequest": "allowpaymentrequest",
  10465. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10466. "webkitallowfullscreen": "",
  10467. "mozallowfullscreen": "",
  10468. "frameborder": "no",
  10469. "border": "0",
  10470. "scrolling ": "no",
  10471. "style": {
  10472. "cssText": "border:0;width:100%;height:100%"
  10473. },
  10474. "src": "https://pi.cocorobo.cn/"
  10475. })
  10476. _box.appendChild(_iframe);
  10477. _box.appendChild(_jie);
  10478. _formdiv = new U.UF.UI.form(
  10479. "CocoPi",
  10480. _box, {
  10481. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10482. "style": {
  10483. "width": "90%",
  10484. "height": "90%",
  10485. "overflow": 'hidden'
  10486. },
  10487. "onresize": function () { }
  10488. }, {
  10489. closecallback: function () { }
  10490. }, {
  10491. "style": {
  10492. "height": "36px"
  10493. }
  10494. }).form; //创建窗体
  10495. _taskbar = {
  10496. "id": str + _formdiv.id,
  10497. "style": {
  10498. "backgroundImage": "url(/img/icon/cocopi.png)"
  10499. },
  10500. "name": "CocoPi",
  10501. "forms": _formdiv,
  10502. "click": function () {
  10503. U.MD.D.I.openApplication(str, obj, info);
  10504. }
  10505. }
  10506. break;
  10507. }
  10508. if (_iframe) {
  10509. if (str == 'CocoPi') {
  10510. _iframe = _formdiv.querySelector('iframe')
  10511. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10512. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10513. })
  10514. if (onloadListener) {
  10515. _iframe.contentDocument.location.reload()
  10516. } else {
  10517. _iframe.contentDocument.location.reload()
  10518. }
  10519. }
  10520. _jie.onclick = async () => {
  10521. let text = ''
  10522. if (aTool == 57) {
  10523. text = _iframe.contentWindow.getLoadXmlStr()
  10524. }
  10525. _loading.style.display = 'flex'
  10526. console.log(_loading);
  10527. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10528. _loading.style.display = 'none'
  10529. let _div = document.createElement('div')
  10530. _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;"
  10531. let _inner = document.createElement('div')
  10532. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10533. _inner.innerHTML = "上传成功"
  10534. _div.appendChild(_inner)
  10535. _iframe.contentWindow.window.document.body.appendChild(_div)
  10536. _div.onclick = () => {
  10537. _iframe.contentWindow.window.document.body.removeChild(_div)
  10538. }
  10539. setTimeout(() => {
  10540. _iframe.contentWindow.window.document.body.removeChild(_div)
  10541. }, 1000);
  10542. }, [], { "type": "POST", "withCredentials": true });
  10543. }
  10544. }
  10545. }
  10546. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10547. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10548. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10549. _userid = student.userid, //登录用户id
  10550. _username = student.student //用户名字
  10551. let _iframe;
  10552. let _cid = cid,
  10553. _stage = stage,
  10554. _task = task,
  10555. _tool = tool;
  10556. var _jie = $$("div", {
  10557. "style": {
  10558. "position": "absolute",
  10559. "bottom": "50px",
  10560. "right": "50px",
  10561. "zIndex": "9999",
  10562. "backgroundColor": "#2268bc",
  10563. "color": "#fff",
  10564. "padding": "12px 20px",
  10565. "cursor": "pointer",
  10566. "borderRadius": "4px",
  10567. },
  10568. "innerHTML": "提交作业"
  10569. })
  10570. let aTool = ''
  10571. let _loading = document.createElement('div')
  10572. _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;"
  10573. // _loading.id = "";
  10574. let _lchild = document.createElement('div')
  10575. let _limg = document.createElement('img')
  10576. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10577. _limg.style = "width: 26px;margin-right: 10px;"
  10578. _lchild.appendChild(_limg)
  10579. let _lspan = document.createElement('span')
  10580. _lspan.innerHTML = "上传中..."
  10581. _lchild.appendChild(_lspan)
  10582. _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%);"
  10583. _loading.appendChild(_lchild)
  10584. var _box = $$('div', {
  10585. "style": {
  10586. "position": "relative",
  10587. "width": "100%",
  10588. "height": "100%",
  10589. },
  10590. })
  10591. _box.appendChild(_loading)
  10592. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10593. switch (str) {
  10594. case "CocoPi":
  10595. aTool = 57;
  10596. _iframe = $$("iframe", {
  10597. "allowpaymentrequest": "allowpaymentrequest",
  10598. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10599. "webkitallowfullscreen": "",
  10600. "mozallowfullscreen": "",
  10601. "frameborder": "no",
  10602. "border": "0",
  10603. "scrolling ": "no",
  10604. "style": {
  10605. "cssText": "border:0;width:100%;height:100%"
  10606. },
  10607. "src": "https://pi.cocorobo.cn/"
  10608. })
  10609. _box.appendChild(_iframe);
  10610. _box.appendChild(_jie);
  10611. _formdiv = new U.UF.UI.form(
  10612. "CocoPi-" + _username,
  10613. _box, {
  10614. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10615. "style": {
  10616. "width": "90%",
  10617. "height": "90%",
  10618. "overflow": 'hidden'
  10619. },
  10620. "onresize": function () { }
  10621. }, {
  10622. closecallback: function () { }
  10623. }, {
  10624. "style": {
  10625. "height": "36px"
  10626. }
  10627. }).form; //创建窗体
  10628. _taskbar = {
  10629. "id": str + _formdiv.id,
  10630. "style": {
  10631. "backgroundImage": "url(/img/icon/cocopi.png)"
  10632. },
  10633. "name": "CocoPi",
  10634. "forms": _formdiv,
  10635. "click": function () {
  10636. U.MD.D.I.openApplication(str, obj, info);
  10637. }
  10638. }
  10639. break;
  10640. }
  10641. if (_iframe) {
  10642. if (str == 'CocoPi') {
  10643. _iframe = _formdiv.querySelector('iframe')
  10644. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10645. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10646. })
  10647. if (onloadListener) {
  10648. _iframe.contentDocument.location.reload()
  10649. } else {
  10650. _iframe.contentDocument.location.reload()
  10651. }
  10652. }
  10653. _jie.onclick = async () => {
  10654. let text = ''
  10655. if (aTool == 57) {
  10656. text = _iframe.contentWindow.getLoadXmlStr()
  10657. }
  10658. _loading.style.display = 'flex'
  10659. console.log(_loading);
  10660. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10661. _loading.style.display = 'none'
  10662. let _div = document.createElement('div')
  10663. _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;"
  10664. let _inner = document.createElement('div')
  10665. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10666. _inner.innerHTML = "上传成功"
  10667. _div.appendChild(_inner)
  10668. _iframe.contentWindow.window.document.body.appendChild(_div)
  10669. _div.onclick = () => {
  10670. _iframe.contentWindow.window.document.body.removeChild(_div)
  10671. }
  10672. setTimeout(() => {
  10673. _iframe.contentWindow.window.document.body.removeChild(_div)
  10674. }, 1000);
  10675. }, [], { "type": "POST", "withCredentials": true });
  10676. }
  10677. }
  10678. }
  10679. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10680. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10681. if (res.value[0].length > 0) {
  10682. if (atool == 57) {
  10683. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10684. }
  10685. } else {
  10686. if (atool == 57) {
  10687. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10688. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10689. }
  10690. }
  10691. }, [], { "type": "POST", "withCredentials": true });
  10692. }
  10693. U.MD.D.addOp = function(text,type,time){
  10694. var userInfo = US.userInfo;
  10695. if(Object.keys(userInfo).length !== 0){
  10696. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10697. }, [], { "type": "POST", "withCredentials": true });
  10698. }
  10699. }