DeskTop.js 658 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  684. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  685. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  686. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  687. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  688. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  689. ];
  690. //hk
  691. U.MD.D.I.hkStudentDeskIcon = [
  692. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  693. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  695. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  696. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  698. ];
  699. //hk
  700. U.MD.D.I.hkaceteacherDeskIcon = [
  701. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  702. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  705. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  706. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  707. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  708. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  709. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  710. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  711. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  712. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  713. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  714. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  717. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  718. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  719. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  720. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  721. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  722. ];
  723. //hk
  724. U.MD.D.I.hkaceStudentDeskIcon = [
  725. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  726. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  728. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  729. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  731. ];
  732. //香海正覺蓮社佛教正覺中學
  733. U.MD.D.I.hkZJLSteacherDeskIcon = [
  734. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  735. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  737. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  738. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  739. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  740. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  741. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  742. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  743. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  744. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  745. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  746. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  749. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSStudentDeskIcon = [
  753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. ];
  758. //云海
  759. U.MD.D.I.yunhaiTeacherDeskIcon = [
  760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  764. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  765. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  766. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  767. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  768. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  769. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  770. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  771. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  772. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  773. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  774. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  775. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  776. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  777. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  778. ];
  779. //福田
  780. U.MD.D.I.heyuanTeacherDeskIcon = [
  781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  786. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  787. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  788. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  789. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  790. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  791. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  792. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  793. ];
  794. //福田
  795. U.MD.D.I.heyuanAdminDeskIcon = [
  796. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  797. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  801. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  802. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  803. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  804. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  805. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  806. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  807. ];
  808. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  809. U.MD.D.I.szherTeacherDeskIcon = [
  810. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  811. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  812. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  813. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  814. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  815. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  816. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  817. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  818. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  820. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  821. ];
  822. //dsei
  823. U.MD.D.I.dseiTeacherDeskIcon = [
  824. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  825. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  826. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  827. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  833. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  834. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  835. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  836. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  837. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  838. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  839. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  840. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  841. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  842. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  843. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  844. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  845. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  846. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  847. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  848. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  849. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  850. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  851. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  852. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  853. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  854. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  855. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  856. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  857. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  858. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  859. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  860. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  861. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  865. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  866. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  867. ];
  868. //dsei
  869. U.MD.D.I.dseiAdminDeskIcon = [
  870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  872. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  873. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  874. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  875. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  876. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  877. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  878. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  879. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  881. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  882. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  883. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  884. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  885. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  886. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  887. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  888. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  889. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  890. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  891. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  892. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  893. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  894. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  895. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  896. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  897. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  898. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  899. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  900. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  901. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  902. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  903. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  904. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  905. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  906. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  907. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  908. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  910. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  911. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  912. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  913. ];
  914. //dsei
  915. U.MD.D.I.dseiStudentDeskIcon = [
  916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  917. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  918. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  919. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  920. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  922. ];
  923. //未来教育基地
  924. U.MD.D.I.szjkyTeacherDeskIcon = [
  925. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  926. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  927. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  928. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  929. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  930. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  931. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  932. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  933. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  934. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  935. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  936. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  937. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  938. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  942. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  943. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  944. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  945. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  946. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  947. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  948. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  949. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  950. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  951. ];
  952. //未来教育基地
  953. U.MD.D.I.szjkyAdminDeskIcon = [
  954. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  955. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  956. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  957. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  958. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  959. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  960. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  961. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  962. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  963. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  964. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  965. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  966. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  967. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  970. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  971. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  972. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  973. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  974. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  975. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  976. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  977. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  978. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  979. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  980. ];
  981. //未来教育基地
  982. U.MD.D.I.szjkyStudentDeskIcon = [
  983. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  984. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  985. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. ];
  988. //成华教育局
  989. U.MD.D.I.chjyjTeacherDeskIcon = [
  990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  992. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  993. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  994. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  995. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  998. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  999. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1000. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1001. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1003. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1004. ];
  1005. //成华教育局chjyj
  1006. U.MD.D.I.chjyjAdminDeskIcon = [
  1007. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1008. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1009. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1011. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1012. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1013. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1014. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1015. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1016. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1017. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.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.chjyjStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcStudentDeskIcon = [
  1032. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1033. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1034. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1035. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1036. ];
  1037. //tpc
  1038. U.MD.D.I.tpcTeacherDeskIcon = [
  1039. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1040. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1041. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1042. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1043. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1044. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1045. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1046. ];
  1047. //tpc
  1048. U.MD.D.I.tpcAdminDeskIcon = [
  1049. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1050. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourseS", "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. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1055. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1056. ];
  1057. //THU-IOE
  1058. U.MD.D.I.thuioeTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1062. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1063. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1064. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1065. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1066. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1069. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1070. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1071. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1072. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1073. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1074. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1075. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1076. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1077. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1078. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1079. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1080. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1081. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1082. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1083. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1084. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1085. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1086. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1087. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1088. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1089. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1090. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1091. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1092. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1093. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1094. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1097. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1098. ];
  1099. //THU-IOE
  1100. U.MD.D.I.thuioeStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //jccssyl
  1107. U.MD.D.I.jccssylTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1111. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1112. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1113. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1114. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1115. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1116. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1117. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1118. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1119. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1120. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1121. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1122. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1127. ];
  1128. //jccssyl
  1129. U.MD.D.I.jccssylStudentDeskIcon = [
  1130. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1132. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1133. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1134. ];
  1135. //cale
  1136. U.MD.D.I.caleTeacherDeskIcon = [
  1137. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1138. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1139. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1140. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1141. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1142. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1143. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1144. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1145. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1146. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1147. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1148. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1149. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1150. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1151. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1153. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1154. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1155. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1156. ];
  1157. //cale
  1158. U.MD.D.I.caleStudentDeskIcon = [
  1159. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1160. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1161. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1162. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1163. ];
  1164. //lqwmsgzs
  1165. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1166. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1167. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1168. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1169. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1170. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1171. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1172. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1173. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1174. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1175. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1176. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1177. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1178. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1179. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1180. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1181. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1182. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1183. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1184. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1185. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1186. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1187. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1188. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1189. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1190. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1191. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1192. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1193. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1194. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1195. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1196. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1197. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1198. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1199. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1202. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1203. ];
  1204. //lqwmsgzs
  1205. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1206. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1207. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1208. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1210. ];
  1211. //盐田区幼儿园
  1212. U.MD.D.I.ytyTeacherDeskIcon = [
  1213. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1214. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1215. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1216. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1217. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1218. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1219. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1220. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1225. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1226. ];
  1227. //盐田区幼儿园
  1228. U.MD.D.I.ytyStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. ];
  1233. //scnuai
  1234. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1235. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1236. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1237. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1238. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1239. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1242. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1243. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1244. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1246. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1247. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1248. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1250. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1251. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1252. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1253. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1254. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1255. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1256. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1257. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1258. ];
  1259. //scnuai
  1260. U.MD.D.I.scnuaiAdminDeskIcon = [
  1261. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1262. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1263. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1264. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1265. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1266. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1267. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1268. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1269. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1270. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1271. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1272. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1273. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1274. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1276. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1277. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1278. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1279. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1280. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1281. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1282. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1283. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1284. ];
  1285. //scnuai
  1286. U.MD.D.I.scnuaiStudentDeskIcon = [
  1287. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1291. ];
  1292. //cocobiz
  1293. U.MD.D.I.cocobizteacherDeskIcon = [
  1294. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1295. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1296. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1297. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1298. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1299. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1300. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1301. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1302. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1303. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1304. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1305. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1306. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1307. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1308. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1310. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1311. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1312. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1313. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1314. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1315. ];
  1316. //cocobiz
  1317. U.MD.D.I.cocobizStudentDeskIcon = [
  1318. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1320. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1321. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1322. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1324. ];
  1325. //xxzjky
  1326. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1327. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1329. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1330. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1331. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1333. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1334. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1335. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1336. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1337. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1338. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1339. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1340. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1343. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1344. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1345. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1346. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1347. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1348. ];
  1349. //xxzjky
  1350. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1351. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1354. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1355. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1357. ];
  1358. //nsfx
  1359. U.MD.D.I.nsfxTeacherDeskIcon = [
  1360. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1361. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1362. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1363. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1366. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1367. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1368. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1369. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1373. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1374. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1375. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1376. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1377. ];
  1378. //nsfx
  1379. U.MD.D.I.nsfxStudentDeskIcon = [
  1380. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1382. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1383. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1384. ];
  1385. //stia
  1386. U.MD.D.I.stiaTeacherDeskIcon = [
  1387. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1388. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1390. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1391. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1392. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1393. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1394. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1396. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1397. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1398. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1399. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1400. ];
  1401. //stia
  1402. U.MD.D.I.stiaStudentDeskIcon = [
  1403. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1404. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1405. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1406. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1407. ];
  1408. //szdjg
  1409. U.MD.D.I.szdjgTeacherDeskIcon = [
  1410. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1411. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1412. ];
  1413. //szdjg
  1414. U.MD.D.I.szdjgStudentDeskIcon = [
  1415. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1416. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1417. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1418. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1419. ];
  1420. //010607
  1421. U.MD.D.I.x010607TeacherDeskIcon = [
  1422. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1423. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1424. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1425. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1426. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1429. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1430. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1433. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1434. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1435. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1436. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1437. ];
  1438. //010607
  1439. U.MD.D.I.x010607StudentDeskIcon = [
  1440. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1441. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1442. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1443. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1444. ];
  1445. //010608
  1446. U.MD.D.I.x010608TeacherDeskIcon = [
  1447. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1448. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1449. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1450. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1451. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1454. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1455. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1456. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1457. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1458. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1459. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1460. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1461. ];
  1462. //010608
  1463. U.MD.D.I.x010608StudentDeskIcon = [
  1464. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1465. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1466. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1467. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1468. ];
  1469. //xhly
  1470. U.MD.D.I.xhlyTeacherDeskIcon = [
  1471. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1472. ];
  1473. //010608
  1474. U.MD.D.I.xhlyStudentDeskIcon = [
  1475. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1476. ];
  1477. //北师大
  1478. U.MD.D.I.BSDNSteacherDeskIcon = [
  1479. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1480. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1481. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1482. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1483. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1486. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1487. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1488. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1489. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1490. ];
  1491. //北师大
  1492. U.MD.D.I.BSDNSstudentDeskIcon = [
  1493. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1495. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1497. ];
  1498. //CUHK_EDU
  1499. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  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": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1511. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1512. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1513. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1514. ];
  1515. //CUHK_EDU
  1516. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1517. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1518. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1519. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1520. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1521. ];
  1522. //010503
  1523. U.MD.D.I.x010503TeacherDeskIcon = [
  1524. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1525. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1527. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1528. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1529. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1530. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1531. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. ];
  1534. //010503
  1535. U.MD.D.I.x010503StudentDeskIcon = [
  1536. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1540. ];
  1541. //SPROUT Lab
  1542. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1543. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1544. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1545. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1546. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1547. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1548. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1549. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1550. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1551. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1552. ];
  1553. //SPROUT Lab
  1554. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1555. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1556. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. ];
  1559. //010204
  1560. U.MD.D.I.x010204TeacherDeskIcon = [
  1561. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1562. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1563. ];
  1564. //010204
  1565. U.MD.D.I.x010204StudentDeskIcon = [
  1566. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //trail
  1572. U.MD.D.I.trailTeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. ];
  1576. //trail
  1577. U.MD.D.I.trailStudentDeskIcon = [
  1578. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1579. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1580. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1581. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. ];
  1583. //010504
  1584. U.MD.D.I.x010504TeacherDeskIcon = [
  1585. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1586. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1587. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1588. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1589. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1592. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1595. ];
  1596. //010504
  1597. U.MD.D.I.x010504StudentDeskIcon = [
  1598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1601. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1602. ];
  1603. //SCNUET
  1604. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1609. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1610. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1611. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1612. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.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": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1617. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1618. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1619. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1620. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1621. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1622. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1623. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1624. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1625. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1628. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1629. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1630. ];
  1631. //SCNUET
  1632. U.MD.D.I.SCNUETAdminDeskIcon = [
  1633. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1634. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1638. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1639. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1640. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1641. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1642. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1643. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1645. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1646. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1647. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1648. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1651. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1652. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1653. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1654. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1655. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1656. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1657. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1658. ];
  1659. //SCNUET
  1660. U.MD.D.I.SCNUETStudentDeskIcon = [
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1663. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1664. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1665. ];
  1666. //x020201
  1667. U.MD.D.I.x020201TeacherDeskIcon = [
  1668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1670. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1671. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1672. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1675. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1676. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1678. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1679. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1680. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1681. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1682. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1683. ];
  1684. //x020201
  1685. U.MD.D.I.x020201AdminDeskIcon = [
  1686. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1687. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1688. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1689. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1690. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1691. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1692. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1693. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1694. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1695. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1696. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1697. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1698. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1699. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1700. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1701. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1702. ];
  1703. //020201
  1704. U.MD.D.I.x020201StudentDeskIcon = [
  1705. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1706. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1708. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. ];
  1710. //010611
  1711. U.MD.D.I.x010611TeacherDeskIcon = [
  1712. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1713. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1715. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1716. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1717. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1721. ];
  1722. //010611
  1723. U.MD.D.I.x010611StudentDeskIcon = [
  1724. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1728. ];
  1729. //tianyuan
  1730. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1738. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1739. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1740. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1741. ];
  1742. //010611
  1743. U.MD.D.I.tianyuanStudentDeskIcon = [
  1744. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1745. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1746. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1748. ];
  1749. //#region 桌面初始化a
  1750. /**
  1751. * 初始化桌面的起始函数
  1752. *
  1753. */
  1754. U.MD.D.I.init = function () {
  1755. if ($("#U_MD_D_K")[0]) {
  1756. //初始化桌面图标
  1757. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1758. // var clickUrl = ':12588/requestIp.php';
  1759. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1760. // U.MD.D.I.Ip = data;
  1761. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1762. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1763. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1764. // })
  1765. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1766. // })
  1767. }
  1768. }
  1769. /**
  1770. * 模式切换
  1771. *
  1772. */
  1773. U.MD.D.I.ModeCheck = function (type) {
  1774. if (US.Config.type == type) {
  1775. return
  1776. }
  1777. US.Config.type = type
  1778. $('.U_PBL_Check .active')[0].className = ''
  1779. if (type == 1) {
  1780. $('.U_PBL_Check div')[0].className = 'active'
  1781. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1782. } else {
  1783. $('.U_PBL_Check div')[1].className = 'active'
  1784. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1785. }
  1786. //初始化桌面图标
  1787. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1788. if (type == 2) {
  1789. U.MD.D.I.openApplication("project")
  1790. }
  1791. }
  1792. /**
  1793. * 隐藏任务栏
  1794. *
  1795. * @param {element} 桌面元素
  1796. */
  1797. U.MD.D.I.hiddenTaskbar = function (el) {
  1798. //任务栏位置变小
  1799. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1800. //桌面的位置变大
  1801. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1802. }
  1803. /**
  1804. * 隐藏任务栏
  1805. *
  1806. * @param {element} 桌面元素
  1807. */
  1808. U.MD.D.I.hiddenTaskbarout = function (el) {
  1809. //任务栏位置变小
  1810. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1811. //任务栏位置变化
  1812. U.selectEl(el).css({ "bottom": "-60px" });
  1813. //桌面的位置变大
  1814. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1815. }
  1816. }
  1817. /**
  1818. * 初始化打印桌面图标
  1819. *
  1820. * @param {element} 桌面元素
  1821. */
  1822. U.MD.D.I.initDesktopIcons = function (el, type) {
  1823. var i, //用于循环
  1824. _content, //桌面图标元素
  1825. _iconcontent, //桌面图标元素
  1826. _frag = $$("frag"), //定义一个碎片元素
  1827. _type = US.userInfo.type,
  1828. _org = US.userInfo.org,
  1829. _oid = US.userInfo.organizeid,
  1830. _role = US.userInfo.role,
  1831. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1832. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1833. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1834. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1835. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1836. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1837. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1838. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1839. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1840. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1841. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1842. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1843. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1844. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1845. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1846. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1847. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1848. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1849. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1850. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1851. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1852. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1853. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1854. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1855. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1856. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1857. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1858. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1859. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1860. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1861. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1862. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1863. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1864. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1865. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1866. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1867. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1868. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1869. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1870. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1871. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1872. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1873. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1874. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1875. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1876. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1877. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1878. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1879. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1880. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1881. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1882. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1883. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1884. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1885. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1886. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1887. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1888. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1889. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1890. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1891. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1892. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1893. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1894. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1895. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1896. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1897. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1898. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1899. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1900. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1901. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1902. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1903. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1904. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1905. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1906. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1907. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1908. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1909. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1910. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1911. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1912. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1913. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1914. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1915. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1916. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1917. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1918. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1919. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1920. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1921. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1922. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1923. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1924. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1925. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1926. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1927. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1928. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1929. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1930. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1931. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1932. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1933. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1934. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1935. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1936. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1937. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1938. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1939. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1940. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1941. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1942. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1943. 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'];
  1944. //清楚桌面图标
  1945. el.innerHTML = "";
  1946. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1947. _teacherDesktopIconInfo.push(
  1948. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1949. { "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)" } },
  1950. )
  1951. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1952. }
  1953. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1954. _teacherDesktopIconInfo.push(
  1955. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1956. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1957. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1958. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1959. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1960. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1961. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1963. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1964. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1965. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1966. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1967. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1971. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1972. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1973. )
  1974. }
  1975. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1976. _teacherDesktopIconInfo.push(
  1977. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1978. )
  1979. }
  1980. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1981. // _teacherDesktopIconInfo.push(
  1982. // )
  1983. // }
  1984. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1985. _teacherDesktopIconInfo.push(
  1986. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1987. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1988. )
  1989. }
  1990. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1994. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1995. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1996. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1997. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1998. )
  1999. _studentDesktopIconInfo.push(
  2000. )
  2001. }
  2002. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2003. _teacherDesktopIconInfo.push(
  2004. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2005. )
  2006. _studentDesktopIconInfo.push(
  2007. )
  2008. }
  2009. //010606 组织
  2010. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2011. _teacherDesktopIconInfo.push(
  2012. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2013. )
  2014. _studentDesktopIconInfo.push(
  2015. )
  2016. }
  2017. //麒麟二中 和 民新小学
  2018. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2019. _teacherDesktopIconInfo.push(
  2020. )
  2021. }
  2022. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2023. _teacherDesktopIconInfo.push(
  2024. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2025. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2026. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2027. )
  2028. }
  2029. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2030. _hkTeacherDeskIconInfo.push(
  2031. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2032. )
  2033. }
  2034. //北师大附中(010601)
  2035. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2036. // _teacherDesktopIconInfo.push(
  2037. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2038. // )
  2039. // _studentDesktopIconInfo.push(
  2040. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2041. // )
  2042. // }
  2043. //樂善堂余近卿中學
  2044. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2045. _teacherDesktopIconInfo.push(
  2046. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2047. )
  2048. }
  2049. // Education Artificial Intelligence
  2050. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2051. _teacherDesktopIconInfo.push(
  2052. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2053. )
  2054. }
  2055. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2056. _teacherDesktopIconInfo.push(
  2057. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2058. )
  2059. }
  2060. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2061. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2062. _teacherDesktopIconInfo.push(
  2063. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2064. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2065. )
  2066. }
  2067. //麒麟二中
  2068. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2069. _studentDesktopIconInfo.push(
  2070. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2071. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2072. )
  2073. }
  2074. //万科双语
  2075. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2076. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2077. if (el.Name == '项目管理') {
  2078. el.Name = 'PBL项目'
  2079. }
  2080. return el
  2081. })
  2082. _studentDesktopIconInfo3.push(
  2083. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2084. )
  2085. }
  2086. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2087. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2088. return el.Name != '魔盒识字' && el.Name != '24点'
  2089. })
  2090. }
  2091. 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) {
  2092. _studentDesktopIconInfo.push(
  2093. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2094. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2095. )
  2096. }
  2097. //循环创建桌面图标
  2098. if (type == 1) {
  2099. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2100. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2101. _content = $$("div", {
  2102. className: "U_MD_D_KO",
  2103. "onmousedown": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_studentDesktopIconInfo[i]]),
  2107. "onclick": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_studentDesktopIconInfo[i]])
  2111. }, _frag); //
  2112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2115. }
  2116. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2117. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2118. _content = $$("div", {
  2119. className: "U_MD_D_KO",
  2120. "onmousedown": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2124. "onclick": U.UF.C.closure(function (obj) {
  2125. //防止拖动图标即打开了桌面应用
  2126. U.MD.D.click(this, obj);
  2127. }, [_hkZJLSStudentDeskIconInfo[i]])
  2128. }, _frag); //
  2129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2132. } //
  2133. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2134. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2135. _content = $$("div", {
  2136. className: "U_MD_D_KO",
  2137. "onmousedown": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_ytyStudentDeskIconInfo[i]]),
  2141. "onclick": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_ytyStudentDeskIconInfo[i]])
  2145. }, _frag); //
  2146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2149. } //
  2150. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2151. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2152. _content = $$("div", {
  2153. className: "U_MD_D_KO",
  2154. "onmousedown": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_jccssylStudentDeskIconInfo[i]]),
  2158. "onclick": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_jccssylStudentDeskIconInfo[i]])
  2162. }, _frag); //
  2163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2166. }
  2167. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2168. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2169. _content = $$("div", {
  2170. className: "U_MD_D_KO",
  2171. "onmousedown": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_scnuaiStudentDeskIconInfo[i]]),
  2175. "onclick": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_scnuaiStudentDeskIconInfo[i]])
  2179. }, _frag); //
  2180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2183. }
  2184. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2185. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2186. _content = $$("div", {
  2187. className: "U_MD_D_KO",
  2188. "onmousedown": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_caleStudentDeskIconInfo[i]]),
  2192. "onclick": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_caleStudentDeskIconInfo[i]])
  2196. }, _frag); //
  2197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2200. }
  2201. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2202. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2203. _content = $$("div", {
  2204. className: "U_MD_D_KO",
  2205. "onmousedown": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_thuioeStudentDeskIconInfo[i]]),
  2209. "onclick": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_thuioeStudentDeskIconInfo[i]])
  2213. }, _frag); //
  2214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2217. }
  2218. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2219. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2220. _content = $$("div", {
  2221. className: "U_MD_D_KO",
  2222. "onmousedown": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_tpcStudentDeskIconInfo[i]]),
  2226. "onclick": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_tpcStudentDeskIconInfo[i]])
  2230. }, _frag); //
  2231. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2232. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2233. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2234. } //
  2235. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2236. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2237. _content = $$("div", {
  2238. className: "U_MD_D_KO",
  2239. "onmousedown": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_chjyjStudentDeskIconInfo[i]]),
  2243. "onclick": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_chjyjStudentDeskIconInfo[i]])
  2247. }, _frag); //
  2248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2251. }
  2252. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2253. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2254. _content = $$("div", {
  2255. className: "U_MD_D_KO",
  2256. "onmousedown": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_szjkyStudentDeskIconInfo[i]]),
  2260. "onclick": U.UF.C.closure(function (obj) {
  2261. //防止拖动图标即打开了桌面应用
  2262. U.MD.D.click(this, obj);
  2263. }, [_szjkyStudentDeskIconInfo[i]])
  2264. }, _frag); //
  2265. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2266. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2267. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2268. }
  2269. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2270. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2271. _content = $$("div", {
  2272. className: "U_MD_D_KO",
  2273. "onmousedown": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_x020201StudentDeskIconInfo[i]]),
  2277. "onclick": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_x020201StudentDeskIconInfo[i]])
  2281. }, _frag); //
  2282. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2283. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2284. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2285. }
  2286. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2287. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2288. _content = $$("div", {
  2289. className: "U_MD_D_KO",
  2290. "onmousedown": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_SCNUETStudentDeskIconInfo[i]]),
  2294. "onclick": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_SCNUETStudentDeskIconInfo[i]])
  2298. }, _frag); //
  2299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2302. }
  2303. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2304. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2305. _content = $$("div", {
  2306. className: "U_MD_D_KO",
  2307. "onmousedown": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_dseiStudentDeskIconInfo[i]]),
  2311. "onclick": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_dseiStudentDeskIconInfo[i]])
  2315. }, _frag); //
  2316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2319. }
  2320. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2321. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2322. _content = $$("div", {
  2323. className: "U_MD_D_KO",
  2324. "onmousedown": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2328. "onclick": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2332. }, _frag); //
  2333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2336. }
  2337. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2338. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2339. _content = $$("div", {
  2340. className: "U_MD_D_KO",
  2341. "onmousedown": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_nsfxStudentDeskIconInfo[i]]),
  2345. "onclick": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_nsfxStudentDeskIconInfo[i]])
  2349. }, _frag); //
  2350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2353. }
  2354. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2355. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2356. _content = $$("div", {
  2357. className: "U_MD_D_KO",
  2358. "onmousedown": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_stiaStudentDeskIconInfo[i]]),
  2362. "onclick": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_stiaStudentDeskIconInfo[i]])
  2366. }, _frag); //
  2367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2370. }
  2371. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2372. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2373. _content = $$("div", {
  2374. className: "U_MD_D_KO",
  2375. "onmousedown": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_szdjgStudentDeskIconInfo[i]]),
  2379. "onclick": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_szdjgStudentDeskIconInfo[i]])
  2383. }, _frag); //
  2384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2387. }
  2388. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2389. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_x010607StudentDeskIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_x010607StudentDeskIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2404. }
  2405. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2406. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_xhlyStudentDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_xhlyStudentDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2421. }
  2422. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2423. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2438. }
  2439. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2440. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_x010503StudentDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_x010503StudentDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2457. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_x010504StudentDeskIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_x010504StudentDeskIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2472. }
  2473. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2474. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_x010204StudentDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_x010204StudentDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2491. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_trailStudentDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_trailStudentDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2508. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2525. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_x010608StudentDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_x010608StudentDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2542. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010611StudentDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_x010611StudentDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2559. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_tianyuantudentDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_tianyuantudentDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2576. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_siesStudentDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_siesStudentDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2593. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_guzmsStudentDeskIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_guzmsStudentDeskIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2610. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_hkStudentDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_hkStudentDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2627. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_hkaceStudentDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_hkaceStudentDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2644. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2645. _content = $$("div", {
  2646. className: "U_MD_D_KO",
  2647. "onmousedown": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2651. "onclick": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_BSDNSstudentDesktopIconInfo[i]])
  2655. }, _frag); //
  2656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2659. }
  2660. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2661. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2662. _content = $$("div", {
  2663. className: "U_MD_D_KO",
  2664. "onmousedown": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_cocobizStudentDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_cocobizStudentDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2678. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2679. _content = $$("div", {
  2680. className: "U_MD_D_KO",
  2681. "onmousedown": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2685. "onclick": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_xxzjkyStudentDeskIconInfo[i]])
  2689. }, _frag); //
  2690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2693. }
  2694. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2695. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_studentDesktopIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_studentDesktopIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2712. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2713. _content = $$("div", {
  2714. className: "U_MD_D_KO",
  2715. "onmousedown": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_tcStudentDeskIconInfo[i]]),
  2719. "onclick": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_tcStudentDeskIconInfo[i]])
  2723. }, _frag); //
  2724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2727. }
  2728. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2729. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2730. _content = $$("div", {
  2731. className: "U_MD_D_KO",
  2732. "onmousedown": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_szscStudentDeskIconInfo[i]]),
  2736. "onclick": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_szscStudentDeskIconInfo[i]])
  2740. }, _frag); //
  2741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2744. }
  2745. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2746. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_studentDesktopIconInfo3[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_studentDesktopIconInfo3[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2761. }
  2762. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2763. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_studentDesktopIconInfo2[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_studentDesktopIconInfo2[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2778. }
  2779. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2780. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2781. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2782. continue
  2783. }
  2784. _content = $$("div", {
  2785. className: "U_MD_D_KO",
  2786. "onmousedown": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_wanketeacherDesktopIconInfo[i]]),
  2790. "onclick": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_wanketeacherDesktopIconInfo[i]])
  2794. }, _frag); //
  2795. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2796. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2797. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2798. }
  2799. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2800. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2801. _content = $$("div", {
  2802. className: "U_MD_D_KO",
  2803. "onmousedown": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_wankeAdminDesktopIconInfo[i]]),
  2807. "onclick": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_wankeAdminDesktopIconInfo[i]])
  2811. }, _frag); //
  2812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2815. }
  2816. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2817. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2818. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2819. continue
  2820. }
  2821. _content = $$("div", {
  2822. className: "U_MD_D_KO",
  2823. "onmousedown": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_scnuaiTeacherDeskIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2837. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2838. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2839. continue
  2840. }
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_BSDNSteacherDesktopIconInfo[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2855. }
  2856. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2857. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2858. _content = $$("div", {
  2859. className: "U_MD_D_KO",
  2860. "onmousedown": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_scnuaiAdminDeskIconInfo[i]]),
  2864. "onclick": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_scnuaiAdminDeskIconInfo[i]])
  2868. }, _frag); //
  2869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2872. }
  2873. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2874. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2875. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2876. continue
  2877. }
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_jccssylTeacherDeskIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_jccssylTeacherDeskIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2894. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2895. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2896. continue
  2897. }
  2898. _content = $$("div", {
  2899. className: "U_MD_D_KO",
  2900. "onmousedown": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_caleTeacherDeskIconInfo[i]]),
  2904. "onclick": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_caleTeacherDeskIconInfo[i]])
  2908. }, _frag); //
  2909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2912. }
  2913. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2914. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2915. _content = $$("div", {
  2916. className: "U_MD_D_KO",
  2917. "onmousedown": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_tpcOrganizerDeskIconInfo[i]]),
  2921. "onclick": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_tpcOrganizerDeskIconInfo[i]])
  2925. }, _frag); //
  2926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2929. }
  2930. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2931. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2932. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2933. continue
  2934. }
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_tpcTeacherDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_tpcTeacherDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2951. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2952. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2953. continue
  2954. }
  2955. _content = $$("div", {
  2956. className: "U_MD_D_KO",
  2957. "onmousedown": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_teacherDesktopIconInfo2[i]]),
  2961. "onclick": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_teacherDesktopIconInfo2[i]])
  2965. }, _frag); //
  2966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2969. }
  2970. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2971. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2972. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2973. continue
  2974. }
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_thuioeTeacherDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_thuioeTeacherDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2991. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2992. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2993. continue
  2994. }
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_lotechTeacherDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_lotechTeacherDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3009. }//
  3010. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3011. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3012. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3013. continue
  3014. }
  3015. _content = $$("div", {
  3016. className: "U_MD_D_KO",
  3017. "onmousedown": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3021. "onclick": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3025. }, _frag); //
  3026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3029. }
  3030. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3031. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3032. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3033. continue
  3034. }
  3035. _content = $$("div", {
  3036. className: "U_MD_D_KO",
  3037. "onmousedown": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_siesTeacherDeskIconInfo[i]]),
  3041. "onclick": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_siesTeacherDeskIconInfo[i]])
  3045. }, _frag); //
  3046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3049. }
  3050. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3051. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3052. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3053. continue
  3054. }
  3055. _content = $$("div", {
  3056. className: "U_MD_D_KO",
  3057. "onmousedown": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_guzmsTeacherDeskIconInfo[i]]),
  3061. "onclick": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_guzmsTeacherDeskIconInfo[i]])
  3065. }, _frag); //
  3066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3069. }
  3070. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3071. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3072. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3073. continue
  3074. }
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_longhuaTeacherDeskIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_longhuaTeacherDeskIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3091. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _ytyTeacherDeskIconInfo[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. }, [_ytyTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_ytyTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3111. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3112. if(_role === 0 && _yunhaiTeacherDeskIconInfo[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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_yunhaiTeacherDeskIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3129. } //_hkStudentDeskIconInfo
  3130. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3131. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3132. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3133. continue
  3134. }
  3135. _content = $$("div", {
  3136. className: "U_MD_D_KO",
  3137. "onmousedown": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3141. "onclick": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3145. }, _frag); //
  3146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3149. }
  3150. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3151. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3152. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3153. continue
  3154. }
  3155. _content = $$("div", {
  3156. className: "U_MD_D_KO",
  3157. "onmousedown": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_hkTeacherDeskIconInfo[i]]),
  3161. "onclick": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_hkTeacherDeskIconInfo[i]])
  3165. }, _frag); //
  3166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3169. }
  3170. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3171. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3172. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3173. continue
  3174. }
  3175. _content = $$("div", {
  3176. className: "U_MD_D_KO",
  3177. "onmousedown": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_hkaceTeacherDeskIconInfo[i]]),
  3181. "onclick": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_hkaceTeacherDeskIconInfo[i]])
  3185. }, _frag); //
  3186. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3187. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3188. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3189. }
  3190. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3191. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3192. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3193. continue
  3194. }
  3195. _content = $$("div", {
  3196. className: "U_MD_D_KO",
  3197. "onmousedown": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_cocobizTeacherDeskIconInfo[i]]),
  3201. "onclick": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_cocobizTeacherDeskIconInfo[i]])
  3205. }, _frag); //
  3206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3209. }
  3210. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3211. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3212. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3213. continue
  3214. }
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3229. }
  3230. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3231. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_gdjgAdminDeskIconInfo[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_gdjgAdminDeskIconInfo[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3248. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3249. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_gdjgTeacherDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_gdjgTeacherDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3268. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3269. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3270. continue
  3271. }
  3272. _content = $$("div", {
  3273. className: "U_MD_D_KO",
  3274. "onmousedown": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_szherTeacherDeskIconInfo[i]]),
  3278. "onclick": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_szherTeacherDeskIconInfo[i]])
  3282. }, _frag); //
  3283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3286. }
  3287. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3288. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  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. }, [_heyuannAdminDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_heyuannAdminDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3305. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_heyuanTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. } //
  3324. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3325. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3326. _content = $$("div", {
  3327. className: "U_MD_D_KO",
  3328. "onmousedown": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_dseiAdminDeskIconInfo[i]]),
  3332. "onclick": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_dseiAdminDeskIconInfo[i]])
  3336. }, _frag); //
  3337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3340. }
  3341. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3342. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3343. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3344. continue
  3345. }
  3346. _content = $$("div", {
  3347. className: "U_MD_D_KO",
  3348. "onmousedown": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_dseiTeacherDeskIconInfo[i]]),
  3352. "onclick": U.UF.C.closure(function (obj) {
  3353. //防止拖动图标即打开了桌面应用
  3354. U.MD.D.click(this, obj);
  3355. }, [_dseiTeacherDeskIconInfo[i]])
  3356. }, _frag); //
  3357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3360. } //
  3361. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3362. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3363. _content = $$("div", {
  3364. className: "U_MD_D_KO",
  3365. "onmousedown": U.UF.C.closure(function (obj) {
  3366. //防止拖动图标即打开了桌面应用
  3367. U.MD.D.click(this, obj);
  3368. }, [_chjyjAdminDeskIconInfo[i]]),
  3369. "onclick": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_chjyjAdminDeskIconInfo[i]])
  3373. }, _frag); //
  3374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3377. }//
  3378. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3379. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3380. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3381. continue
  3382. }
  3383. _content = $$("div", {
  3384. className: "U_MD_D_KO",
  3385. "onmousedown": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_chjyjTeacherDeskIconInfo[i]]),
  3389. "onclick": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_chjyjTeacherDeskIconInfo[i]])
  3393. }, _frag); //
  3394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3397. }
  3398. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3399. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3400. _content = $$("div", {
  3401. className: "U_MD_D_KO",
  3402. "onmousedown": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_szjkyAdminDeskIconInfo[i]]),
  3406. "onclick": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_szjkyAdminDeskIconInfo[i]])
  3410. }, _frag); //
  3411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3414. }//
  3415. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3416. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3417. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3418. continue
  3419. }
  3420. _content = $$("div", {
  3421. className: "U_MD_D_KO",
  3422. "onmousedown": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_szjkyTeacherDeskIconInfo[i]]),
  3426. "onclick": U.UF.C.closure(function (obj) {
  3427. //防止拖动图标即打开了桌面应用
  3428. U.MD.D.click(this, obj);
  3429. }, [_szjkyTeacherDeskIconInfo[i]])
  3430. }, _frag); //
  3431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3434. }
  3435. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3436. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3437. _content = $$("div", {
  3438. className: "U_MD_D_KO",
  3439. "onmousedown": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_x020201AdminDeskIconInfo[i]]),
  3443. "onclick": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_x020201AdminDeskIconInfo[i]])
  3447. }, _frag); //
  3448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3451. }//
  3452. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3453. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3454. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3455. continue
  3456. }
  3457. _content = $$("div", {
  3458. className: "U_MD_D_KO",
  3459. "onmousedown": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_x020201TeacherDeskIconInfo[i]]),
  3463. "onclick": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_x020201TeacherDeskIconInfo[i]])
  3467. }, _frag); //
  3468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3471. }
  3472. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3473. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3474. _content = $$("div", {
  3475. className: "U_MD_D_KO",
  3476. "onmousedown": U.UF.C.closure(function (obj) {
  3477. //防止拖动图标即打开了桌面应用
  3478. U.MD.D.click(this, obj);
  3479. }, [_SCNUETAdminDeskIconInfo[i]]),
  3480. "onclick": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_SCNUETAdminDeskIconInfo[i]])
  3484. }, _frag); //
  3485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3488. }//
  3489. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3490. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3491. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3492. continue
  3493. }
  3494. _content = $$("div", {
  3495. className: "U_MD_D_KO",
  3496. "onmousedown": U.UF.C.closure(function (obj) {
  3497. //防止拖动图标即打开了桌面应用
  3498. U.MD.D.click(this, obj);
  3499. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3500. "onclick": U.UF.C.closure(function (obj) {
  3501. //防止拖动图标即打开了桌面应用
  3502. U.MD.D.click(this, obj);
  3503. }, [_SCNUETTeacherDeskIconInfo[i]])
  3504. }, _frag); //
  3505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3508. }
  3509. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3510. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3511. _content = $$("div", {
  3512. className: "U_MD_D_KO",
  3513. "onmousedown": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_futianAdminDeskIconInfo[i]]),
  3517. "onclick": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_futianAdminDeskIconInfo[i]])
  3521. }, _frag); //
  3522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3525. }
  3526. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3527. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3528. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3529. continue
  3530. }
  3531. _content = $$("div", {
  3532. className: "U_MD_D_KO",
  3533. "onmousedown": U.UF.C.closure(function (obj) {
  3534. //防止拖动图标即打开了桌面应用
  3535. U.MD.D.click(this, obj);
  3536. }, [_futianTeacherDeskIconInfo[i]]),
  3537. "onclick": U.UF.C.closure(function (obj) {
  3538. //防止拖动图标即打开了桌面应用
  3539. U.MD.D.click(this, obj);
  3540. }, [_futianTeacherDeskIconInfo[i]])
  3541. }, _frag); //
  3542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3545. }
  3546. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3547. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3548. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3549. continue
  3550. }
  3551. _content = $$("div", {
  3552. className: "U_MD_D_KO",
  3553. "onmousedown": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_MingdeTeacherDeskIcon[i]]),
  3557. "onclick": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_MingdeTeacherDeskIcon[i]])
  3561. }, _frag); //
  3562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3565. }
  3566. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3567. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3568. _content = $$("div", {
  3569. className: "U_MD_D_KO",
  3570. "onmousedown": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_lhsAdminDesktopIconInfo[i]]),
  3574. "onclick": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_lhsAdminDesktopIconInfo[i]])
  3578. }, _frag); //
  3579. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3580. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3581. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3582. }
  3583. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3584. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3585. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3586. continue
  3587. }
  3588. _content = $$("div", {
  3589. className: "U_MD_D_KO",
  3590. "onmousedown": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_lhsteacherDesktopIconInfo[i]]),
  3594. "onclick": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_lhsteacherDesktopIconInfo[i]])
  3598. }, _frag); //
  3599. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3600. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3601. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3602. }
  3603. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3604. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3605. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3606. continue
  3607. }
  3608. _content = $$("div", {
  3609. className: "U_MD_D_KO",
  3610. "onmousedown": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3614. "onclick": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_zhoujiateacherDesktopIconInfo[i]])
  3618. }, _frag); //
  3619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3622. }
  3623. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3624. for (i = 0; i < _hanDeskIcon.length; i++) {
  3625. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3626. continue
  3627. }
  3628. _content = $$("div", {
  3629. className: "U_MD_D_KO",
  3630. "onmousedown": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_hanDeskIcon[i]]),
  3634. "onclick": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_hanDeskIcon[i]])
  3638. }, _frag); //
  3639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3642. }
  3643. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3644. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3645. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3646. continue
  3647. }
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_orgStemDeskIcon[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_orgStemDeskIcon[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3662. }
  3663. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3664. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3665. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_szulsDeskIcon[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_szulsDeskIcon[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3684. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3685. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3686. continue
  3687. }
  3688. _content = $$("div", {
  3689. className: "U_MD_D_KO",
  3690. "onmousedown": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_orgDesktopIconInfo[i]]),
  3694. "onclick": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_orgDesktopIconInfo[i]])
  3698. }, _frag); //
  3699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3702. }
  3703. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3704. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3705. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3706. continue
  3707. }
  3708. _content = $$("div", {
  3709. className: "U_MD_D_KO",
  3710. "onmousedown": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_schoolDesktopIconInfo[i]]),
  3714. "onclick": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_schoolDesktopIconInfo[i]])
  3718. }, _frag); //
  3719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3722. }
  3723. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3724. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3725. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3726. continue
  3727. }
  3728. _content = $$("div", {
  3729. className: "U_MD_D_KO",
  3730. "onmousedown": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_GMteacherDesktopIconInfo[i]]),
  3734. "onclick": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_GMteacherDesktopIconInfo[i]])
  3738. }, _frag); //
  3739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3742. }
  3743. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3744. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3745. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3746. continue
  3747. }
  3748. _content = $$("div", {
  3749. className: "U_MD_D_KO",
  3750. "onmousedown": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_SONGteacherDesktopIconInfo[i]]),
  3754. "onclick": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_SONGteacherDesktopIconInfo[i]])
  3758. }, _frag); //
  3759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3762. }
  3763. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3764. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3765. _content = $$("div", {
  3766. className: "U_MD_D_KO",
  3767. "onmousedown": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_GMstudentDesktopIconInfo[i]]),
  3771. "onclick": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_GMstudentDesktopIconInfo[i]])
  3775. }, _frag); //
  3776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3779. }
  3780. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3781. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3782. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3783. continue
  3784. }
  3785. _content = $$("div", {
  3786. className: "U_MD_D_KO",
  3787. "onmousedown": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_tcTeacherDeskIconInfo[i]]),
  3791. "onclick": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_tcTeacherDeskIconInfo[i]])
  3795. }, _frag); //
  3796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3799. }
  3800. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3801. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3802. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3803. continue
  3804. }
  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. }, [_tcOrganizerDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_tcOrganizerDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3821. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _szscTeacherDeskIconInfo[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. }, [_szscTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_szscTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3841. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3842. if(_role === 0 && _szscOrganizerDeskIconInfo[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. }, [_szscOrganizerDeskIconInfo[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_szscOrganizerDeskIconInfo[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3861. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3862. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3863. continue
  3864. }
  3865. _content = $$("div", {
  3866. className: "U_MD_D_KO",
  3867. "onmousedown": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_nsfxTeacherDeskIconInfo[i]]),
  3871. "onclick": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_nsfxTeacherDeskIconInfo[i]])
  3875. }, _frag); //
  3876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3879. }
  3880. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3881. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3882. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3883. continue
  3884. }
  3885. _content = $$("div", {
  3886. className: "U_MD_D_KO",
  3887. "onmousedown": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_stiaTeacherDeskIconInfo[i]]),
  3891. "onclick": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_stiaTeacherDeskIconInfo[i]])
  3895. }, _frag); //
  3896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3899. }
  3900. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3901. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3902. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3903. continue
  3904. }
  3905. _content = $$("div", {
  3906. className: "U_MD_D_KO",
  3907. "onmousedown": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szdjgTeacherDeskIconInfo[i]]),
  3911. "onclick": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_szdjgTeacherDeskIconInfo[i]])
  3915. }, _frag); //
  3916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3919. }
  3920. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3921. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3922. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3923. continue
  3924. }
  3925. _content = $$("div", {
  3926. className: "U_MD_D_KO",
  3927. "onmousedown": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_x010607TeacherDeskIconInfo[i]]),
  3931. "onclick": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_x010607TeacherDeskIconInfo[i]])
  3935. }, _frag); //
  3936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3939. }
  3940. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3941. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3942. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3943. continue
  3944. }
  3945. _content = $$("div", {
  3946. className: "U_MD_D_KO",
  3947. "onmousedown": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_xhlyTeacherDeskIconInfo[i]]),
  3951. "onclick": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_xhlyTeacherDeskIconInfo[i]])
  3955. }, _frag); //
  3956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3959. }
  3960. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3961. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3962. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3963. continue
  3964. }
  3965. _content = $$("div", {
  3966. className: "U_MD_D_KO",
  3967. "onmousedown": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3971. "onclick": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3975. }, _frag); //
  3976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3979. }
  3980. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3981. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3982. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3983. continue
  3984. }
  3985. _content = $$("div", {
  3986. className: "U_MD_D_KO",
  3987. "onmousedown": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_x010503TeacherDeskIconInfo[i]]),
  3991. "onclick": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_x010503TeacherDeskIconInfo[i]])
  3995. }, _frag); //
  3996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3999. }
  4000. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4001. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4002. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4003. continue
  4004. }
  4005. _content = $$("div", {
  4006. className: "U_MD_D_KO",
  4007. "onmousedown": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_x010504TeacherDeskIconInfo[i]]),
  4011. "onclick": U.UF.C.closure(function (obj) {
  4012. //防止拖动图标即打开了桌面应用
  4013. U.MD.D.click(this, obj);
  4014. }, [_x010504TeacherDeskIconInfo[i]])
  4015. }, _frag); //
  4016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4019. }
  4020. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4021. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4022. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4023. continue
  4024. }
  4025. _content = $$("div", {
  4026. className: "U_MD_D_KO",
  4027. "onmousedown": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_x010204TeacherDeskIconInfo[i]]),
  4031. "onclick": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_x010204TeacherDeskIconInfo[i]])
  4035. }, _frag); //
  4036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4039. }
  4040. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4041. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4042. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4043. continue
  4044. }
  4045. _content = $$("div", {
  4046. className: "U_MD_D_KO",
  4047. "onmousedown": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_trailTeacherDeskIconInfo[i]]),
  4051. "onclick": U.UF.C.closure(function (obj) {
  4052. //防止拖动图标即打开了桌面应用
  4053. U.MD.D.click(this, obj);
  4054. }, [_trailTeacherDeskIconInfo[i]])
  4055. }, _frag); //
  4056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4059. }
  4060. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4061. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4062. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4063. continue
  4064. }
  4065. _content = $$("div", {
  4066. className: "U_MD_D_KO",
  4067. "onmousedown": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4071. "onclick": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4075. }, _frag); //
  4076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4079. }
  4080. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4081. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4082. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4083. continue
  4084. }
  4085. _content = $$("div", {
  4086. className: "U_MD_D_KO",
  4087. "onmousedown": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_x010608TeacherDeskIconInfo[i]]),
  4091. "onclick": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_x010608TeacherDeskIconInfo[i]])
  4095. }, _frag); //
  4096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4099. }
  4100. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4101. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4102. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4103. continue
  4104. }
  4105. _content = $$("div", {
  4106. className: "U_MD_D_KO",
  4107. "onmousedown": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_x010611TeacherDeskIconInfo[i]]),
  4111. "onclick": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_x010611TeacherDeskIconInfo[i]])
  4115. }, _frag); //
  4116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4119. }
  4120. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4121. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4122. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4123. continue
  4124. }
  4125. _content = $$("div", {
  4126. className: "U_MD_D_KO",
  4127. "onmousedown": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4131. "onclick": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_tianyuanTeacherDeskIconInfo[i]])
  4135. }, _frag); //
  4136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4139. }
  4140. } else {
  4141. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4142. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4143. continue
  4144. }
  4145. _content = $$("div", {
  4146. className: "U_MD_D_KO",
  4147. "onmousedown": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_teacherDesktopIconInfo[i]]),
  4151. "onclick": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_teacherDesktopIconInfo[i]])
  4155. }, _frag); //
  4156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4159. }
  4160. }
  4161. } else {
  4162. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4163. _content = $$("div", {
  4164. className: "U_MD_D_KO",
  4165. style: { 'width': '124px', 'height': '145px' },
  4166. "onmousedown": U.UF.C.closure(function (obj) {
  4167. //防止拖动图标即打开了桌面应用
  4168. U.MD.D.click(this, obj);
  4169. }, [_easyDesktopIconInfo[i]]),
  4170. "onclick": U.UF.C.closure(function (obj) {
  4171. //防止拖动图标即打开了桌面应用
  4172. U.MD.D.click(this, obj);
  4173. }, [_easyDesktopIconInfo[i]])
  4174. }, _frag); //
  4175. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4178. }
  4179. }
  4180. if (type == 1) {
  4181. //加载好后给图标定位
  4182. U.MD.D.iconPostion($(_frag).Child());
  4183. } else {
  4184. //加载好后给图标定位
  4185. U.MD.D.iconPostion2($(_frag).Child());
  4186. }
  4187. //把图标加载到页面
  4188. el.appendChild(_frag);
  4189. }
  4190. /**
  4191. * 显示任务栏
  4192. *
  4193. * @param {element} 桌面元素
  4194. */
  4195. U.MD.D.I.displayTaskbar = function (el) {
  4196. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4197. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4198. //任务栏位置变化
  4199. U.selectEl(el).css({ "bottom": "0px" });
  4200. //桌面位置变话
  4201. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4202. }
  4203. }
  4204. //#region 桌面图标拖动逻辑
  4205. /**
  4206. * 桌面排列图标
  4207. *
  4208. * @param {element} 桌面元素
  4209. * @param {object} 上下相距的距离
  4210. * @param {object} 左右相距的距离
  4211. * @return {object} 命名空间
  4212. */
  4213. U.MD.D.iconPostion = function (childs, top, left) {
  4214. var i; //用于循环处理
  4215. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4216. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4217. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4218. for (i = 0; i < childs.length; i++) {
  4219. //如果竖排top超过了范围处理
  4220. if (top + 95 > US.height - 10) {
  4221. //left超过了页面范围处理,则向上重叠打印处理
  4222. if ((left + 180) > US.width) {
  4223. top -= 110;
  4224. left -= 90;
  4225. }
  4226. //没有超过范围,那么left+90添加到下一个竖排打印
  4227. else {
  4228. left += 90;
  4229. top = 15;
  4230. };
  4231. }
  4232. //给图标的位置赋值
  4233. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4234. if (i < childs.length - 1) {
  4235. //页面图标每次向下加95
  4236. top += 95;
  4237. }
  4238. }
  4239. //返回最后调用的图标的位置
  4240. return [top, left];
  4241. }
  4242. /**
  4243. * 桌面排列图标
  4244. *
  4245. * @param {element} 桌面元素
  4246. * @param {object} 上下相距的距离
  4247. * @param {object} 左右相距的距离
  4248. * @return {object} 命名空间
  4249. */
  4250. U.MD.D.iconPostion2 = function (childs, top, left) {
  4251. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4252. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4253. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4254. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4255. for (i = 0; i < childs.length; i++) {
  4256. //如果竖排top超过了范围处理
  4257. if (left + 150 > US.width - 10) {
  4258. //left超过了页面范围处理,则向上重叠打印处理
  4259. if ((top + 180) > US.Height) {
  4260. top -= 150;
  4261. left -= 150;
  4262. }
  4263. //没有超过范围,那么left+90添加到下一个竖排打印
  4264. else {
  4265. top += 150;
  4266. left = ol;
  4267. };
  4268. }
  4269. //给图标的位置赋值
  4270. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4271. if (i < childs.length - 1) {
  4272. //页面图标每次向下加95
  4273. left += 150;
  4274. }
  4275. }
  4276. //返回最后调用的图标的位置
  4277. return [top, left];
  4278. }
  4279. /**
  4280. * 桌面点击事件逻辑
  4281. *
  4282. * @param {element} 桌面元素
  4283. * @param {object} 上下相距的距离
  4284. * @param {object} 左右相距的距离
  4285. * @return {object} 命名空间
  4286. */
  4287. U.MD.D.click = function (el, obj) {
  4288. var _buttonnumber = event.button; //点击的按钮的事件值
  4289. var _userinfo = US.userInfo;
  4290. U.UF.EV.stopBubble(); //阻止向上冒泡
  4291. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4292. if (_buttonnumber < 2) {
  4293. //如果是click事件的处理
  4294. if (event.type == "click") {
  4295. //如果元素在mousemove事件中没有移动则出发click事件
  4296. if (!U.MD.D.I.IsDrag) {
  4297. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4298. U.alert("请先登录您的账号!");
  4299. setTimeout(() => {
  4300. U.MD.U.L.login();
  4301. }, 2000);
  4302. } else {
  4303. //打开应用处理
  4304. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4305. }
  4306. }
  4307. }
  4308. //如果是mouse事件的处理
  4309. else {
  4310. if (US.Config.type == '1') {
  4311. //拖动处理,添加拖动和拖动结束事件
  4312. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4313. }
  4314. }
  4315. U.MD.D.I.IsDrag = false;
  4316. }
  4317. }
  4318. /**
  4319. * 拖动的处理
  4320. *
  4321. */
  4322. U.MD.D.iconMove = function () {
  4323. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4324. U.MD.D.I.IsDrag = true;
  4325. }
  4326. /**
  4327. * 拖动结束后,这里是定位处理,以网状的形式定位
  4328. *
  4329. * @param {element} 拖动的元素
  4330. * @return {object} 命名空间
  4331. */
  4332. U.MD.D.iconUp = function (el) {
  4333. var _top = 15,
  4334. _left = 20,
  4335. _margin,
  4336. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4337. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4338. if (_positioninfo["OT"] > 15) {
  4339. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4340. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4341. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4342. }
  4343. if (_positioninfo["OL"] > 20) {
  4344. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4345. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4346. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4347. }
  4348. //while循环判断么一个重叠的元素
  4349. do {
  4350. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4351. _top = _positioninfo[0] + 95; //得到定位后的top
  4352. _left = _positioninfo[1]; //得到定位后的left
  4353. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4354. }
  4355. /**
  4356. * 判断拖动后图标是否重叠
  4357. *
  4358. * @param {element} 拖动的元素
  4359. * @param {element} 桌面所有的元素
  4360. * @param {array} 拖动元素的位置
  4361. ----------[0] 上 top
  4362. ----------[1] 左 left
  4363. * @return {object} 命名空间
  4364. */
  4365. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4366. //循环所有的图标
  4367. for (var i = 0; i < childs.length; i++) {
  4368. //判断有没有和该图标诶子重叠的元素
  4369. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4370. return childs[i]; //如果有返回
  4371. }
  4372. }
  4373. }
  4374. //#endregion
  4375. //#endregion
  4376. //#region 桌面应用
  4377. /**
  4378. * 打开应用
  4379. *
  4380. * @param {string} 类型
  4381. -----------------Disk 网盘系统
  4382. -----------------PDisk 学习系统网盘
  4383. -----------------Poto 图片
  4384. -----------------Video 视频
  4385. -----------------Music 音乐
  4386. -----------------Word word
  4387. -----------------Excel excel
  4388. -----------------Txt 记事本
  4389. -----------------PB 学习系统
  4390. -----------------Blog 朋友圈系统
  4391. -----------------FTP ftp系统
  4392. -----------------Group 好友群
  4393. -----------------SY 首页系统
  4394. -----------------Set 个人设置
  4395. -----------------XSet 系统设置
  4396. -----------------App 我们所有的app
  4397. -----------------BC c.1473.cn 平台
  4398. -----------------CWeb d.1473.cn 变成平台
  4399. -----------------其他的外联系统 我们统一用iframe打开
  4400. * @param {array} 类型
  4401. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4402. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4403. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4404. 如果第一个参数为其他,则无第二个参数
  4405. * @returns {array}
  4406. */
  4407. window.addEventListener('message', function (e) { // 监听 message 事件
  4408. // alert(e.data.type);
  4409. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4410. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4411. //3是展示全部阶段 2学生 1老师 4专家
  4412. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4413. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4414. //3是展示全部阶段 2学生 1老师 4专家
  4415. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4417. //3是展示全部阶段 2学生 1老师 4专家
  4418. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4421. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4422. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4428. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4429. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4430. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4431. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4432. //3是展示全部阶段 2学生 1老师 4专家
  4433. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4434. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4435. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4436. U.MD.D.I.selectUser();
  4437. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4438. var _formel = document.getElementById("study");
  4439. U.UF.F.windowZooming(_formel);
  4440. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4441. var _formel = document.getElementById("studyDetail");
  4442. U.UF.F.windowZooming(_formel);
  4443. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4444. var _formel = document.getElementById("studyDetail");
  4445. U.UF.F.windowZooming(_formel);
  4446. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4447. var _formel = document.getElementById("studentStudy");
  4448. U.UF.F.windowZooming(_formel);
  4449. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4450. // var _formel = document.getElementById("study");
  4451. //如果最大化了,那么就把他缩小
  4452. // if (_formel.ismaximize) {
  4453. // return;
  4454. // }
  4455. // U.UF.F.windowZooming(_formel);
  4456. // U.UF.F.topWindow(_formel);
  4457. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4458. // var _formel = document.getElementById("studyDetail");
  4459. //如果最大化了,那么就把他缩小
  4460. // if (_formel.ismaximize) {
  4461. // return;
  4462. // }
  4463. // U.UF.F.windowZooming(_formel);
  4464. // U.UF.F.topWindow(_formel);
  4465. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4466. // var _formel = document.getElementById("studentStudy");
  4467. // if (_formel.ismaximize) {
  4468. // return;
  4469. // }
  4470. // U.UF.F.windowZooming(_formel);
  4471. // U.UF.F.topWindow(_formel);
  4472. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4473. var _formel = document.getElementById("study");
  4474. // if (_formel.ismaximize) {
  4475. // return;
  4476. // }
  4477. // U.UF.F.windowZooming(_formel);
  4478. U.UF.F.topWindow(_formel);
  4479. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4480. var _formel = document.getElementById("studentIndex");
  4481. U.UF.F.windowZooming(_formel);
  4482. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4483. var _formel = document.getElementById("studyDetailS");
  4484. U.UF.F.windowZooming(_formel);
  4485. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4486. var _formel = document.getElementById("studioIndex");
  4487. U.UF.F.windowZooming(_formel);
  4488. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4489. var _formel = document.getElementById("studyDetailStudio");
  4490. U.UF.F.windowZooming(_formel);
  4491. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4492. var _formel = document.getElementById("studyDetailStudio");
  4493. U.UF.F.windowZooming(_formel);
  4494. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4495. var _formel = document.getElementById("studyDetailNT");
  4496. U.UF.F.windowZooming(_formel);
  4497. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4498. var _formel = document.getElementById("studyDetailS");
  4499. U.UF.F.windowZooming(_formel);
  4500. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4501. var _formel = document.getElementById("studyDetailS");
  4502. U.UF.F.topWindow(_formel);
  4503. } else if (e.data.tools && e.data.tools == "1") {
  4504. // U.MD.D.I.openApplication("whiteboard")
  4505. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4506. } else if (e.data.tools && e.data.tools == "2") {
  4507. U.MD.D.I.openApplication("note")
  4508. } else if (e.data.tools && e.data.tools == "3") {
  4509. // U.MD.D.I.openApplication("mind")
  4510. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "4") {
  4512. U.MD.D.I.openApplication("investigation")
  4513. } else if (e.data.tools && e.data.tools == "6") {
  4514. // U.MD.D.I.openApplication("doc")
  4515. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4516. } else if (e.data.tools && e.data.tools == "7") {
  4517. // U.MD.D.I.openApplication("mindNetwork")
  4518. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4519. } else if (e.data.tools && e.data.tools == "8") {
  4520. U.MD.D.I.openApplication("library")
  4521. } else if (e.data.tools && e.data.tools == "17") {
  4522. U.MD.D.I.openApplication("stuLibrary")
  4523. } else if (e.data.tools && e.data.tools == "18") {
  4524. U.MD.D.I.openApplication("train")
  4525. } else if (e.data.tools && e.data.tools == "21") {
  4526. U.MD.D.I.openApplication("program")
  4527. } else if (e.data.tools && e.data.tools == "22") {
  4528. U.MD.D.I.openApplication("AIprogram2")
  4529. } else if (e.data.tools && e.data.tools == "23") {
  4530. U.MD.D.I.openApplication("Pythonprogram")
  4531. } else if (e.data.tools && e.data.tools == "24") {
  4532. U.MD.D.I.openApplication("AIprogram")
  4533. } else if (e.data.tools && e.data.tools == "25") {
  4534. U.MD.D.I.openApplication("sys")
  4535. } else if (e.data.tools && e.data.tools == "26") {
  4536. // U.MD.D.I.openApplication("courseDesign")
  4537. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4538. } else if (e.data.tools && e.data.tools == "31") {
  4539. U.MD.D.I.openApplication("netWorkPanel")
  4540. } else if (e.data.tools && e.data.tools == "32") {
  4541. U.MD.D.I.openApplication("codeEdit")
  4542. } else if (e.data.tools && e.data.tools == "57") {
  4543. U.MD.D.I.openApplication("CocoPi")
  4544. } else if (e.data.tools && e.data.tools == "63") {
  4545. U.MD.D.I.openApplication("Wood")
  4546. } else if (e.data.tools && e.data.tools == "58") {
  4547. U.MD.D.I.openApplication("car")
  4548. } else if (e.data.tools && e.data.tools == "59") {
  4549. U.MD.D.I.openApplication("lineSearch")
  4550. } else if (e.data.tools && e.data.tools == "60") {
  4551. U.MD.D.I.openApplication("deepLearning")
  4552. } else if (e.data.tools && e.data.tools == "61") {
  4553. U.MD.D.I.openApplication("allHistory")
  4554. } else if (e.data.tools && e.data.tools == "28") {
  4555. U.MD.D.I.openApplication("translation")
  4556. } else if (e.data.tools && e.data.tools == "37") {
  4557. U.MD.D.I.openApplication("mohe")
  4558. } else if (e.data.tools && e.data.tools == "38") {
  4559. U.MD.D.I.openApplication("24game")
  4560. } else if (e.data.tools && e.data.tools == "39") {
  4561. U.MD.D.I.openApplication("GeoGebra")
  4562. } else if (e.data.tools && e.data.tools == "43") {
  4563. U.MD.D.I.openApplication("studentEvaluate")
  4564. } else if (e.data.tools && e.data.tools == "44") {
  4565. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4566. } else if (e.data.tools && e.data.tools == "46") {
  4567. U.MD.D.I.openApplication("project")
  4568. } else if (e.data.tools && e.data.tools == "71") {
  4569. U.MD.D.I.openApplication("aigptCourse")
  4570. } else if (e.data.tools && e.data.tools == "1s") {
  4571. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "3s") {
  4573. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "6s") {
  4575. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "1studio") {
  4577. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "3studio") {
  4579. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "6studio") {
  4581. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "3y") {
  4583. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "1y") {
  4585. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4586. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4587. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4588. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4589. U.MD.D.I.openApplication("AIAnalyse")
  4590. } else if (e.data.tools && e.data.tools == "1teacher") {
  4591. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "3teacher") {
  4593. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4594. } else if (e.data.tools && e.data.tools == "7teacher") {
  4595. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4597. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4599. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "1E") {
  4601. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4602. } else if (e.data.tools && e.data.tools == "3E") {
  4603. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "57y") {
  4605. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4606. } else if (e.data.tools && e.data.tools == "57u") {
  4607. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "57teacher") {
  4609. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4610. } else if (e.data.tools && e.data.tools == "64") {
  4611. U.MD.D.I.openApplication("AIChat")
  4612. } else if (e.data.tools && e.data.tools == "66") {
  4613. U.MD.D.I.openApplication("formulaEdi")
  4614. } else if (e.data.tools && e.data.tools == "67") {
  4615. U.MD.D.I.openApplication("molStr")
  4616. } else if (e.data.tools && e.data.tools == "68") {
  4617. U.MD.D.I.openApplication("timeAxis")
  4618. } else if (e.data.tools && e.data.tools == "openCourse") {
  4619. let _data = {
  4620. typea: e.data.typea || '',
  4621. typeb: e.data.typeb || '',
  4622. typed: e.data.typed || '',
  4623. }
  4624. U.MD.D.I.openInApplication("index", _data)
  4625. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4626. let _data = {
  4627. classid: e.data.classid || '',
  4628. }
  4629. U.MD.D.I.openInApplication("dataClass", _data)
  4630. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4631. let _data = {
  4632. cid: e.data.cid || '',
  4633. gid: e.data.gid || '',
  4634. }
  4635. U.MD.D.I.openInApplication("opencCscl", _data)
  4636. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4637. U.MD.D.I.openApplication("dataBoardTest")
  4638. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4639. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4641. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4642. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4643. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4645. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4647. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4648. }else if (e.data.tools && e.data.tools == "loginSz") {
  4649. U.MD.D.I.openInApplication("loginSz")
  4650. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4651. if($('#classroom_observation_board')[0]){
  4652. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4653. }
  4654. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4655. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4656. if($('#classroom_observation_ob_comment')[0]){
  4657. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4658. }
  4659. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4660. }else if (e.data.tools && e.data.tools == "logout"){
  4661. U.MD.U.LO.logoutSystem()
  4662. }else if (e.data.tools && e.data.tools == "getLogin"){
  4663. let _iframe = $('#UI_Login')[0];
  4664. if (_iframe) {
  4665. var userInfo = US.userInfo;
  4666. var type = 2
  4667. if(userInfo && userInfo.userid){
  4668. type = 1
  4669. }
  4670. _contentWindow = _iframe.contentWindow;
  4671. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4672. }
  4673. }
  4674. });
  4675. U.MD.D.I.selectUser = function () {
  4676. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4677. if (res.value[0].length > 0) {
  4678. US.userInfo = res.value[0][0];
  4679. $(".userName")[0].innerHTML = US.userInfo.username;
  4680. }
  4681. }, [], { "type": "GET", "withCredentials": true });
  4682. }
  4683. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4684. var _userinfo = US.userInfo, //登录用户信息
  4685. _userid = US.userInfo.userid, //登录用户id
  4686. _oid = _userinfo.organizeid,
  4687. _type = US.userInfo.type,
  4688. _org = US.userInfo.org,
  4689. _role = US.userInfo.role,
  4690. _classId = US.userInfo.classid;
  4691. if (_type == 4) {
  4692. tType = 4
  4693. }
  4694. switch (str) {
  4695. case "studyDetailNT": //无终端模式
  4696. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4697. setTimeout(() => {
  4698. U.MD.U.L.login();
  4699. }, 2000);
  4700. } else {
  4701. _formdiv = new U.UF.UI.form(
  4702. "课程详情",
  4703. $$("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 }), {
  4704. "id": "studyDetailNT",
  4705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4706. "onresize": function () { }
  4707. }, {
  4708. closecallback: function () { }
  4709. }, { "style": { "height": "36px" } }).form; //创建窗体
  4710. _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); } }
  4711. break;
  4712. }
  4713. case "studyDetail":
  4714. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4715. setTimeout(() => {
  4716. U.MD.U.L.login();
  4717. }, 2000);
  4718. } else {
  4719. _formdiv = new U.UF.UI.form(
  4720. "课程详情",
  4721. $$("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 }), {
  4722. "id": "studyDetail",
  4723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4724. "onresize": function () { }
  4725. }, {
  4726. closecallback: function () { }
  4727. }, { "style": { "height": "36px" } }).form; //创建窗体
  4728. _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); } }
  4729. break;
  4730. }
  4731. case "studyDetailTrain":
  4732. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4733. setTimeout(() => {
  4734. U.MD.U.L.login();
  4735. }, 2000);
  4736. } else {
  4737. _formdiv = new U.UF.UI.form(
  4738. "培训详情",
  4739. $$("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 }), {
  4740. "id": "studyDetailTrain",
  4741. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4742. "onresize": function () { }
  4743. }, {
  4744. closecallback: function () { }
  4745. }, { "style": { "height": "36px" } }).form; //创建窗体
  4746. _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); } }
  4747. break;
  4748. }
  4749. case "studyDetailS":
  4750. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4751. setTimeout(() => {
  4752. U.MD.U.L.login();
  4753. }, 2000);
  4754. } else {
  4755. _formdiv = new U.UF.UI.form(
  4756. "项目详情",
  4757. $$("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 }), {
  4758. "id": "studyDetailS",
  4759. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4760. "onresize": function () { }
  4761. }, {
  4762. closecallback: function () { }
  4763. }, { "style": { "height": "36px" } }).form; //创建窗体
  4764. _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); } }
  4765. break;
  4766. }
  4767. case "studyDetailStudio":
  4768. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4769. setTimeout(() => {
  4770. U.MD.U.L.login();
  4771. }, 2000);
  4772. } else {
  4773. _formdiv = new U.UF.UI.form(
  4774. "工作详情",
  4775. $$("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 }), {
  4776. "id": "studyDetailStudio",
  4777. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. _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); } }
  4783. break;
  4784. }
  4785. case "studyDetailS5":
  4786. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4787. setTimeout(() => {
  4788. U.MD.U.L.login();
  4789. }, 2000);
  4790. } else {
  4791. _formdiv = new U.UF.UI.form(
  4792. "项目详情",
  4793. $$("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 }), {
  4794. "id": "studyDetailS",
  4795. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4796. "onresize": function () { }
  4797. }, {
  4798. closecallback: function () { }
  4799. }, { "style": { "height": "36px" } }).form; //创建窗体
  4800. _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); } }
  4801. break;
  4802. }
  4803. case "studyDetailGM":
  4804. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4805. setTimeout(() => {
  4806. U.MD.U.L.login();
  4807. }, 2000);
  4808. } else {
  4809. _formdiv = new U.UF.UI.form(
  4810. "课程详情",
  4811. $$("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 }), {
  4812. "id": "studyDetail",
  4813. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _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); } }
  4819. break;
  4820. }
  4821. case "hanUrl":
  4822. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4823. setTimeout(() => {
  4824. U.MD.U.L.login();
  4825. }, 2000);
  4826. } else {
  4827. _formdiv = new U.UF.UI.form(
  4828. "汉字宫",
  4829. $$("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" }), {
  4830. "id": "hanUrl",
  4831. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4832. "onresize": function () { }
  4833. }, {
  4834. closecallback: function () { }
  4835. }, { "style": { "height": "36px" } }).form; //创建窗体
  4836. _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); } }
  4837. break;
  4838. }
  4839. case "index":
  4840. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4841. setTimeout(() => {
  4842. U.MD.U.L.login();
  4843. }, 2000);
  4844. } else {
  4845. _formdiv = new U.UF.UI.form(
  4846. "课程中心",
  4847. $$("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 }), {
  4848. "id": "study",
  4849. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _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); } }
  4855. break;
  4856. }
  4857. case "dataClass":
  4858. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4859. setTimeout(() => {
  4860. U.MD.U.L.login();
  4861. }, 2000);
  4862. } else {
  4863. _formdiv = new U.UF.UI.form(
  4864. "数据报告",
  4865. $$("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 }), {
  4866. "id": "dataClass",
  4867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4868. "onresize": function () { }
  4869. }, {
  4870. closecallback: function () { }
  4871. }, { "style": { "height": "36px" } }).form; //创建窗体
  4872. _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); } }
  4873. break;
  4874. }
  4875. case "opencCscl":
  4876. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4877. setTimeout(() => {
  4878. U.MD.U.L.login();
  4879. }, 2000);
  4880. } else {
  4881. _formdiv = new U.UF.UI.form(
  4882. "协同建构",
  4883. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4884. "id": "futureClass",
  4885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4886. "onresize": function () { }
  4887. }, {
  4888. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4889. }, { "style": { "height": "36px" } }).form; //创建窗体
  4890. _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); } }
  4891. break;
  4892. }
  4893. case "openCourseUpdate":
  4894. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4895. setTimeout(() => {
  4896. U.MD.U.L.login();
  4897. }, 2000);
  4898. } else {
  4899. _formdiv = new U.UF.UI.form(
  4900. "课程管理",
  4901. $$("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 }), {
  4902. "id": "openCourseUpdate",
  4903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4904. "onresize": function () { }
  4905. }, {
  4906. closecallback: function () { }
  4907. }, { "style": { "height": "36px" } }).form; //创建窗体
  4908. break;
  4909. }
  4910. case "openNewCourseUpdate":
  4911. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4912. setTimeout(() => {
  4913. U.MD.U.L.login();
  4914. }, 2000);
  4915. } else {
  4916. _formdiv = new U.UF.UI.form(
  4917. "课程管理",
  4918. $$("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 }), {
  4919. "id": "openCourseUpdate",
  4920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4921. "onresize": function () { }
  4922. }, {
  4923. closecallback: function () { }
  4924. }, { "style": { "height": "36px" } }).form; //创建窗体
  4925. break;
  4926. }
  4927. case "openCourseEUpdate":
  4928. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4929. setTimeout(() => {
  4930. U.MD.U.L.login();
  4931. }, 2000);
  4932. } else {
  4933. _formdiv = new U.UF.UI.form(
  4934. "课程管理",
  4935. $$("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 }), {
  4936. "id": "openCourseUpdate",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. break;
  4943. }
  4944. case "openCourseAiUpdate":
  4945. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4946. setTimeout(() => {
  4947. U.MD.U.L.login();
  4948. }, 2000);
  4949. } else {
  4950. _formdiv = new U.UF.UI.form(
  4951. "课程管理",
  4952. $$("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 }), {
  4953. "id": "openCourseUpdate",
  4954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. break;
  4960. }
  4961. case "openCourseNewUpdate":
  4962. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4963. setTimeout(() => {
  4964. U.MD.U.L.login();
  4965. }, 2000);
  4966. } else {
  4967. _formdiv = new U.UF.UI.form(
  4968. "课程管理",
  4969. $$("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 }), {
  4970. "id": "openCourseUpdate",
  4971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //创建窗体
  4976. break;
  4977. }
  4978. case "inviteLoginSz":
  4979. _formdiv = new U.UF.UI.form(
  4980. "随机码登录",
  4981. $$("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 }), {
  4982. "id": "loginSz",
  4983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4984. "onresize": function () { }
  4985. }, {
  4986. closecallback: function () { }
  4987. }, { "style": { "height": "36px" } }).form; //创建窗体
  4988. break;
  4989. case "loginSz":
  4990. _formdiv = new U.UF.UI.form(
  4991. "教师登录",
  4992. $$("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" }), {
  4993. "id": "loginSz",
  4994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4995. "onresize": function () { }
  4996. }, {
  4997. closecallback: function () { }
  4998. }, { "style": { "height": "36px" } }).form; //创建窗体
  4999. break;
  5000. case "teacher":
  5001. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5002. setTimeout(() => {
  5003. U.MD.U.L.login();
  5004. }, 2000);
  5005. } else {
  5006. _formdiv = new U.UF.UI.form(
  5007. "教师管理",
  5008. $$("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 }), {
  5009. "id": "teacher",
  5010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5011. "onresize": function () { }
  5012. }, {
  5013. closecallback: function () { }
  5014. }, { "style": { "height": "36px" } }).form; //创建窗体
  5015. break;
  5016. }
  5017. case "dataBoardSZArea":
  5018. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5019. setTimeout(() => {
  5020. U.MD.U.L.login();
  5021. }, 2000);
  5022. } else {
  5023. _formdiv = new U.UF.UI.form(
  5024. "综合数据看板",
  5025. $$("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 }), {
  5026. "id": "dataBoardSZArea",
  5027. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5028. "onresize": function () { }
  5029. }, {
  5030. closecallback: function () { }
  5031. }, { "style": { "height": "36px" } }).form; //创建窗体
  5032. break;
  5033. }
  5034. case "dataBoardSZCity":
  5035. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5036. setTimeout(() => {
  5037. U.MD.U.L.login();
  5038. }, 2000);
  5039. } else {
  5040. _formdiv = new U.UF.UI.form(
  5041. "综合数据看板",
  5042. $$("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 }), {
  5043. "id": "dataBoardSZCity",
  5044. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5045. "onresize": function () { }
  5046. }, {
  5047. closecallback: function () { }
  5048. }, { "style": { "height": "36px" } }).form; //创建窗体
  5049. break;
  5050. }
  5051. case "classroom_observation_board":
  5052. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5053. setTimeout(() => {
  5054. U.MD.U.L.login();
  5055. }, 2000);
  5056. } else {
  5057. _formdiv = new U.UF.UI.form(
  5058. "课堂观察",
  5059. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5060. "id": "classroom_observation_board",
  5061. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { }
  5065. }, { "style": { "height": "36px" } }).form; //创建窗体
  5066. break;
  5067. }
  5068. case "classroom_observation_ob_comment":
  5069. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5070. setTimeout(() => {
  5071. U.MD.U.L.login();
  5072. }, 2000);
  5073. } else {
  5074. _formdiv = new U.UF.UI.form(
  5075. "课堂审核",
  5076. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5077. "id": "classroom_observation_ob_comment",
  5078. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5079. "onresize": function () { }
  5080. }, {
  5081. closecallback: function () { }
  5082. }, { "style": { "height": "36px" } }).form; //创建窗体
  5083. break;
  5084. }
  5085. }
  5086. }
  5087. U.MD.D.I.openApplication = function (str, obj, info) {
  5088. obj = obj || {};
  5089. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5090. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5091. _userinfo = US.userInfo, //登录用户信息
  5092. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5093. _oid = obj.organizeid || _userinfo.organizeid,
  5094. _type = US.userInfo.type,
  5095. _org = US.userInfo.org,
  5096. _role = US.userInfo.role,
  5097. _classId = US.userInfo.classid,
  5098. _TscreenType = 1
  5099. _screenType = 2,
  5100. _SscreenType = 3;
  5101. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5102. return;
  5103. }
  5104. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5105. switch (str) {
  5106. case "studnetProject": //好友打开
  5107. _formdiv = new U.UF.UI.form(
  5108. "我的项目",
  5109. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5110. "id": "studnetProject",
  5111. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5117. break;
  5118. case "studentEvaluate": //好友打开
  5119. _formdiv = new U.UF.UI.form(
  5120. "我的评价",
  5121. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5122. "id": "studentEvaluate",
  5123. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5124. "onresize": function () { }
  5125. }, {
  5126. closecallback: function () { }
  5127. }, { "style": { "height": "36px" } }).form; //创建窗体
  5128. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5129. break;
  5130. case "my":
  5131. _formdiv = new U.UF.UI.form(
  5132. "我的资料",
  5133. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5134. "id": "my",
  5135. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5136. "onresize": function () { }
  5137. }, {
  5138. closecallback: function () { }
  5139. }, { "style": { "height": "36px" } }).form; //创建窗体
  5140. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5141. break;
  5142. case "program":
  5143. _formdiv = new U.UF.UI.form(
  5144. "编程平台",
  5145. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5146. "id": "program",
  5147. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5153. break;
  5154. case "library":
  5155. _formdiv = new U.UF.UI.form(
  5156. "素材库",
  5157. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5158. "id": "library",
  5159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5160. "onresize": function () { }
  5161. }, {
  5162. closecallback: function () { }
  5163. }, { "style": { "height": "36px" } }).form; //创建窗体
  5164. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5165. break;
  5166. case "whiteboard":
  5167. _formdiv = new U.UF.UI.form(
  5168. "电子白板",
  5169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5170. "id": "whiteboard",
  5171. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5172. "onresize": function () { }
  5173. }, {
  5174. closecallback: function () { }
  5175. }, { "style": { "height": "36px" } }).form; //创建窗体
  5176. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5177. break;
  5178. case "investigation":
  5179. _formdiv = new U.UF.UI.form(
  5180. "问卷调查",
  5181. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5182. "id": "investigation",
  5183. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5184. "onresize": function () { }
  5185. }, {
  5186. closecallback: function () { }
  5187. }, { "style": { "height": "36px" } }).form; //创建窗体
  5188. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5189. break;
  5190. case "note":
  5191. _formdiv = new U.UF.UI.form(
  5192. "便签分类",
  5193. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5194. "id": "note",
  5195. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5201. break;
  5202. // case "score":
  5203. // _formdiv = new U.UF.UI.form(
  5204. // "量规评分",
  5205. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5206. // "id": "score",
  5207. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. // "onresize": function() {}
  5209. // }, {
  5210. // closecallback: function() {}
  5211. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. // _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); } }
  5213. // break;
  5214. case "mind":
  5215. _formdiv = new U.UF.UI.form(
  5216. "思维导图",
  5217. $$("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"
  5218. "id": "mind",
  5219. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. _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); } }
  5225. break;
  5226. case "doc":
  5227. // U.MD.D.I.isRoom();
  5228. _formdiv = new U.UF.UI.form(
  5229. "协同文档",
  5230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5231. "id": "doc",
  5232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5238. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5239. // })
  5240. _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); } }
  5241. break;
  5242. case "studentStudy":
  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=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5246. "id": "studentStudy",
  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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5253. break;
  5254. case "train": //好友打开
  5255. _formdiv = new U.UF.UI.form(
  5256. "训练平台",
  5257. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5258. "id": "train",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5265. break;
  5266. case "mindNetwork": //好友打开
  5267. _formdiv = new U.UF.UI.form(
  5268. "思维网格",
  5269. $$("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 }), {
  5270. "id": "mindNetwork",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _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); } }
  5277. break;
  5278. case "studentClassRoom": //好友打开
  5279. _formdiv = new U.UF.UI.form(
  5280. "实时课堂",
  5281. $$("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 }), {
  5282. "id": "studentClassRoom",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. setTimeout(() => {
  5290. U.UF.F.windowZooming(_formdiv)
  5291. }, 0);
  5292. break;
  5293. }
  5294. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5295. switch (str) {
  5296. case "studnetProject": //好友打开
  5297. _formdiv = new U.UF.UI.form(
  5298. "我的项目",
  5299. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5300. "id": "studnetProject",
  5301. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5307. break;
  5308. case "studentEvaluate": //好友打开
  5309. _formdiv = new U.UF.UI.form(
  5310. "我的评价",
  5311. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5312. "id": "studentEvaluate",
  5313. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5314. "onresize": function () { }
  5315. }, {
  5316. closecallback: function () { }
  5317. }, { "style": { "height": "36px" } }).form; //创建窗体
  5318. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5319. break;
  5320. case "my":
  5321. _formdiv = new U.UF.UI.form(
  5322. "我的资料",
  5323. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5324. "id": "my",
  5325. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5326. "onresize": function () { }
  5327. }, {
  5328. closecallback: function () { }
  5329. }, { "style": { "height": "36px" } }).form; //创建窗体
  5330. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5331. break;
  5332. case "program":
  5333. _formdiv = new U.UF.UI.form(
  5334. "编程平台",
  5335. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5336. "id": "program",
  5337. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5338. "onresize": function () { }
  5339. }, {
  5340. closecallback: function () { }
  5341. }, { "style": { "height": "36px" } }).form; //创建窗体
  5342. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5343. break;
  5344. case "library":
  5345. _formdiv = new U.UF.UI.form(
  5346. "素材库",
  5347. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5348. "id": "library",
  5349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5350. "onresize": function () { }
  5351. }, {
  5352. closecallback: function () { }
  5353. }, { "style": { "height": "36px" } }).form; //创建窗体
  5354. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5355. break;
  5356. case "whiteboard":
  5357. _formdiv = new U.UF.UI.form(
  5358. "电子白板",
  5359. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5360. "id": "whiteboard",
  5361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5362. "onresize": function () { }
  5363. }, {
  5364. closecallback: function () { }
  5365. }, { "style": { "height": "36px" } }).form; //创建窗体
  5366. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5367. break;
  5368. case "investigation":
  5369. _formdiv = new U.UF.UI.form(
  5370. "问卷调查",
  5371. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5372. "id": "investigation",
  5373. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5379. break;
  5380. case "note":
  5381. _formdiv = new U.UF.UI.form(
  5382. "便签分类",
  5383. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5384. "id": "note",
  5385. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5386. "onresize": function () { }
  5387. }, {
  5388. closecallback: function () { }
  5389. }, { "style": { "height": "36px" } }).form; //创建窗体
  5390. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5391. break;
  5392. // case "score":
  5393. // _formdiv = new U.UF.UI.form(
  5394. // "量规评分",
  5395. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5396. // "id": "score",
  5397. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5398. // "onresize": function() {}
  5399. // }, {
  5400. // closecallback: function() {}
  5401. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5402. // _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); } }
  5403. // break;
  5404. case "mind":
  5405. _formdiv = new U.UF.UI.form(
  5406. "思维导图",
  5407. $$("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"
  5408. "id": "mind",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _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); } }
  5415. break;
  5416. case "doc":
  5417. // U.MD.D.I.isRoom();
  5418. _formdiv = new U.UF.UI.form(
  5419. "协同文档",
  5420. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5421. "id": "doc",
  5422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. "onresize": function () { }
  5424. }, {
  5425. closecallback: function () { }
  5426. }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5428. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5429. })
  5430. _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); } }
  5431. break;
  5432. case "train": //好友打开
  5433. _formdiv = new U.UF.UI.form(
  5434. "训练平台",
  5435. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5436. "id": "train",
  5437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5438. "onresize": function () { }
  5439. }, {
  5440. closecallback: function () { }
  5441. }, { "style": { "height": "36px" } }).form; //创建窗体
  5442. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5443. break;
  5444. case "studentStudy":
  5445. _formdiv = new U.UF.UI.form(
  5446. "课程中心",
  5447. $$("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
  5448. "id": "studentStudy",
  5449. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5450. "onresize": function () { }
  5451. }, {
  5452. closecallback: function () { }
  5453. }, { "style": { "height": "36px" } }).form; //创建窗体
  5454. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5455. break;
  5456. case "mindNetwork": //好友打开
  5457. _formdiv = new U.UF.UI.form(
  5458. "思维网格",
  5459. $$("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 }), {
  5460. "id": "mindNetwork",
  5461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5462. "onresize": function () { }
  5463. }, {
  5464. closecallback: function () { }
  5465. }, { "style": { "height": "36px" } }).form; //创建窗体
  5466. _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); } }
  5467. break;
  5468. case "studentClassRoom": //好友打开
  5469. _formdiv = new U.UF.UI.form(
  5470. "实时课堂",
  5471. $$("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 }), {
  5472. "id": "studentClassRoom",
  5473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5474. "onresize": function () { }
  5475. }, {
  5476. closecallback: function () { }
  5477. }, { "style": { "height": "36px" } }).form; //创建窗体
  5478. _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); } }
  5479. setTimeout(() => {
  5480. U.UF.F.windowZooming(_formdiv)
  5481. }, 0);
  5482. break;
  5483. }
  5484. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5485. //选择应用处理
  5486. switch (str) {
  5487. case "project": //好友打开
  5488. _formdiv = new U.UF.UI.form(
  5489. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5490. $$("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 }), {
  5491. "id": "project",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5498. break;
  5499. case "student":
  5500. _formdiv = new U.UF.UI.form(
  5501. "学生管理",
  5502. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5503. "id": "student",
  5504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //创建窗体
  5509. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5510. break;
  5511. case "evaluate":
  5512. _formdiv = new U.UF.UI.form(
  5513. "学生评价",
  5514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5515. "id": "evaluate",
  5516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5522. break;
  5523. case "sys":
  5524. _formdiv = new U.UF.UI.form(
  5525. "目标管理",
  5526. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5527. "id": "sys",
  5528. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5529. "onresize": function () { }
  5530. }, {
  5531. closecallback: function () { }
  5532. }, { "style": { "height": "36px" } }).form; //创建窗体
  5533. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5534. break;
  5535. case "courseDesign":
  5536. _formdiv = new U.UF.UI.form(
  5537. "项目设计",
  5538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5539. "id": "courseDesign",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5546. break;
  5547. case "program":
  5548. _formdiv = new U.UF.UI.form(
  5549. "编程平台",
  5550. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5551. "id": "program",
  5552. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5558. break;
  5559. case "class":
  5560. _formdiv = new U.UF.UI.form(
  5561. "班级管理",
  5562. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5563. "id": "class",
  5564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5570. break;
  5571. case "Grade":
  5572. _formdiv = new U.UF.UI.form(
  5573. "年级管理",
  5574. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5575. "id": "Grade",
  5576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5582. break;
  5583. case "teacherOffice":
  5584. _formdiv = new U.UF.UI.form(
  5585. "教研室",
  5586. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5587. "id": "teacherOffice",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5594. break;
  5595. case "my":
  5596. _formdiv = new U.UF.UI.form(
  5597. "我的资料",
  5598. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5599. "id": "my",
  5600. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5601. "onresize": function () { }
  5602. }, {
  5603. closecallback: function () { }
  5604. }, { "style": { "height": "36px" } }).form; //创建窗体
  5605. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5606. break;
  5607. case "notice":
  5608. _formdiv = new U.UF.UI.form(
  5609. "通知公告",
  5610. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5611. "id": "notice",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5618. break;
  5619. case "library":
  5620. _formdiv = new U.UF.UI.form(
  5621. "素材库",
  5622. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5623. "id": "library",
  5624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, { "style": { "height": "36px" } }).form; //创建窗体
  5629. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5630. break;
  5631. case "whiteboard":
  5632. _formdiv = new U.UF.UI.form(
  5633. "电子白板",
  5634. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5635. "id": "whiteboard",
  5636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5637. "onresize": function () { }
  5638. }, {
  5639. closecallback: function () { }
  5640. }, { "style": { "height": "36px" } }).form; //创建窗体
  5641. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5642. break;
  5643. case "investigation":
  5644. _formdiv = new U.UF.UI.form(
  5645. "问卷调查",
  5646. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5647. "id": "investigation",
  5648. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5649. "onresize": function () { }
  5650. }, {
  5651. closecallback: function () { }
  5652. }, { "style": { "height": "36px" } }).form; //创建窗体
  5653. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5654. break;
  5655. case "note":
  5656. _formdiv = new U.UF.UI.form(
  5657. "便签分类",
  5658. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5659. "id": "note",
  5660. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5661. "onresize": function () { }
  5662. }, {
  5663. closecallback: function () { }
  5664. }, { "style": { "height": "36px" } }).form; //创建窗体
  5665. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5666. break;
  5667. // case "score":
  5668. // _formdiv = new U.UF.UI.form(
  5669. // "量规评分",
  5670. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5671. // "id": "score",
  5672. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5673. // "onresize": function() {}
  5674. // }, {
  5675. // closecallback: function() {}
  5676. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5677. // _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); } }
  5678. // break;
  5679. case "mind":
  5680. _formdiv = new U.UF.UI.form(
  5681. "思维导图",
  5682. $$("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"
  5683. "id": "mind",
  5684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5685. "onresize": function () { }
  5686. }, {
  5687. closecallback: function () { }
  5688. }, { "style": { "height": "36px" } }).form; //创建窗体
  5689. _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); } }
  5690. break;
  5691. case "doc":
  5692. // U.MD.D.I.isRoom();
  5693. _formdiv = new U.UF.UI.form(
  5694. "协同文档",
  5695. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5696. "id": "doc",
  5697. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5698. "onresize": function () { }
  5699. }, {
  5700. closecallback: function () { }
  5701. }, { "style": { "height": "36px" } }).form; //创建窗体
  5702. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5703. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5704. })
  5705. _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); } }
  5706. break;
  5707. case "study":
  5708. _formdiv = new U.UF.UI.form(
  5709. "课程中心",
  5710. $$("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
  5711. "id": "study",
  5712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5718. break;
  5719. case "mindNetwork": //好友打开
  5720. _formdiv = new U.UF.UI.form(
  5721. "思维网格",
  5722. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5723. "id": "mindNetwork",
  5724. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5725. "onresize": function () { }
  5726. }, {
  5727. closecallback: function () { }
  5728. }, { "style": { "height": "36px" } }).form; //创建窗体
  5729. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5730. break;
  5731. case "train": //好友打开
  5732. _formdiv = new U.UF.UI.form(
  5733. "训练平台",
  5734. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5735. "id": "mindNetwork",
  5736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5737. "onresize": function () { }
  5738. }, {
  5739. closecallback: function () { }
  5740. }, { "style": { "height": "36px" } }).form; //创建窗体
  5741. _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); } }
  5742. break;
  5743. case "teacherClassRoom": //好友打开
  5744. _formdiv = new U.UF.UI.form(
  5745. "实时课堂",
  5746. $$("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 }), {
  5747. "id": "teacherClassRoom",
  5748. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, { "style": { "height": "36px" } }).form; //创建窗体
  5753. _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); } }
  5754. setTimeout(() => {
  5755. U.UF.F.windowZooming(_formdiv)
  5756. }, 0);
  5757. break;
  5758. }
  5759. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5760. switch (str) {
  5761. case "project": //好友打开
  5762. _formdiv = new U.UF.UI.form(
  5763. "课程管理",
  5764. $$("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 }), {
  5765. "id": "project",
  5766. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5767. "onresize": function () { }
  5768. }, {
  5769. closecallback: function () { }
  5770. }, { "style": { "height": "36px" } }).form; //创建窗体
  5771. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5772. break;
  5773. case "evaluate":
  5774. _formdiv = new U.UF.UI.form(
  5775. "学生评价",
  5776. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5777. "id": "evaluate",
  5778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5779. "onresize": function () { }
  5780. }, {
  5781. closecallback: function () { }
  5782. }, { "style": { "height": "36px" } }).form; //创建窗体
  5783. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5784. break;
  5785. case "notice":
  5786. _formdiv = new U.UF.UI.form(
  5787. "通知公告",
  5788. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5789. "id": "notice",
  5790. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5791. "onresize": function () { }
  5792. }, {
  5793. closecallback: function () { }
  5794. }, { "style": { "height": "36px" } }).form; //创建窗体
  5795. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5796. break;
  5797. case "stuLibrary":
  5798. _formdiv = new U.UF.UI.form(
  5799. "学习资料",
  5800. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5801. "id": "stuLibrary",
  5802. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5803. "onresize": function () { }
  5804. }, {
  5805. closecallback: function () { }
  5806. }, { "style": { "height": "36px" } }).form; //创建窗体
  5807. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5808. break;
  5809. case "program":
  5810. _formdiv = new U.UF.UI.form(
  5811. "编程平台",
  5812. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5813. "id": "program",
  5814. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //创建窗体
  5819. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5820. break;
  5821. case "whiteboard":
  5822. _formdiv = new U.UF.UI.form(
  5823. "电子白板",
  5824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5825. "id": "whiteboard",
  5826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5832. break;
  5833. case "investigation":
  5834. _formdiv = new U.UF.UI.form(
  5835. "问卷调查",
  5836. $$("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 }), {
  5837. "id": "investigation",
  5838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //创建窗体
  5843. _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); } }
  5844. break;
  5845. case "mind":
  5846. _formdiv = new U.UF.UI.form(
  5847. "思维导图",
  5848. $$("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"
  5849. "id": "mind",
  5850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5851. "onresize": function () { }
  5852. }, {
  5853. closecallback: function () { }
  5854. }, { "style": { "height": "36px" } }).form; //创建窗体
  5855. _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); } }
  5856. break;
  5857. case "doc":
  5858. // U.MD.D.I.isRoom();
  5859. _formdiv = new U.UF.UI.form(
  5860. "协同文档",
  5861. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5862. "id": "doc",
  5863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5864. "onresize": function () { }
  5865. }, {
  5866. closecallback: function () { }
  5867. }, { "style": { "height": "36px" } }).form; //创建窗体
  5868. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5869. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5870. })
  5871. _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); } }
  5872. break;
  5873. case "study":
  5874. _formdiv = new U.UF.UI.form(
  5875. "课程中心",
  5876. $$("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
  5877. "id": "study",
  5878. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5879. "onresize": function () { }
  5880. }, {
  5881. closecallback: function () { }
  5882. }, { "style": { "height": "36px" } }).form; //创建窗体
  5883. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5884. break;
  5885. case "mindNetwork": //好友打开
  5886. _formdiv = new U.UF.UI.form(
  5887. "思维网格",
  5888. $$("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 }), {
  5889. "id": "mindNetwork",
  5890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5891. "onresize": function () { }
  5892. }, {
  5893. closecallback: function () { }
  5894. }, { "style": { "height": "36px" } }).form; //创建窗体
  5895. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5896. break;
  5897. case "train": //好友打开
  5898. _formdiv = new U.UF.UI.form(
  5899. "训练平台",
  5900. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5901. "id": "train",
  5902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5903. "onresize": function () { }
  5904. }, {
  5905. closecallback: function () { }
  5906. }, { "style": { "height": "36px" } }).form; //创建窗体
  5907. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5908. break;
  5909. case "sys":
  5910. _formdiv = new U.UF.UI.form(
  5911. "目标管理",
  5912. $$("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 }), {
  5913. "id": "sys",
  5914. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5915. "onresize": function () { }
  5916. }, {
  5917. closecallback: function () { }
  5918. }, { "style": { "height": "36px" } }).form; //创建窗体
  5919. _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); } }
  5920. break;
  5921. case "courseDesign":
  5922. _formdiv = new U.UF.UI.form(
  5923. "项目设计",
  5924. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5925. "id": "courseDesign",
  5926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5927. "onresize": function () { }
  5928. }, {
  5929. closecallback: function () { }
  5930. }, { "style": { "height": "36px" } }).form; //创建窗体
  5931. _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); } }
  5932. break;
  5933. }
  5934. } else if (!_type) {
  5935. switch (str) {
  5936. case "my":
  5937. _formdiv = new U.UF.UI.form(
  5938. "我的资料",
  5939. $$("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 }), {
  5940. "id": "my",
  5941. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //创建窗体
  5946. _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); } }
  5947. break;
  5948. }
  5949. }
  5950. switch (str) {
  5951. // AIprogram2 AI体验 aihub.cocorobo.cn
  5952. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5953. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5954. case "formulaEdi": //公式编辑
  5955. _formdiv = new U.UF.UI.form(
  5956. "公式编辑",
  5957. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5958. "id": "formulaEdi",
  5959. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //创建窗体
  5964. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5965. break;
  5966. case "molStr": //分子结构
  5967. _formdiv = new U.UF.UI.form(
  5968. "分子结构",
  5969. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5970. "id": "molStr",
  5971. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, { "style": { "height": "36px" } }).form; //创建窗体
  5976. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5977. break;
  5978. case "timeAxis": //时间轴
  5979. _formdiv = new U.UF.UI.form(
  5980. "时间轴",
  5981. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5982. "id": "timeAxis",
  5983. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5984. "onresize": function () { }
  5985. }, {
  5986. closecallback: function () { }
  5987. }, { "style": { "height": "36px" } }).form; //创建窗体
  5988. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5989. break;
  5990. case "AIprogram2": //AI体验
  5991. _formdiv = new U.UF.UI.form(
  5992. "AI体验",
  5993. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5994. "id": "AIprogram2",
  5995. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, { "style": { "height": "36px" } }).form; //创建窗体
  6000. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6001. break;
  6002. case "Pythonprogram": //python编程
  6003. _formdiv = new U.UF.UI.form(
  6004. "Python编程",
  6005. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6006. "id": "Pythonprogram",
  6007. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6013. break;
  6014. case "AIprogram": //ai编程
  6015. _formdiv = new U.UF.UI.form(
  6016. "AI编程平台",
  6017. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6018. "id": "AIprogram",
  6019. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //创建窗体
  6024. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6025. break;
  6026. case "CocoPi": //CocoPi
  6027. _formdiv = new U.UF.UI.form(
  6028. "CocoPi",
  6029. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  6030. "id": "CocoPi",
  6031. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, { "style": { "height": "36px" } }).form; //创建窗体
  6036. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6037. break;
  6038. case "Wood": //Wood
  6039. _formdiv = new U.UF.UI.form(
  6040. "海龟编程",
  6041. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  6042. "id": "Wood",
  6043. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6044. "onresize": function () { }
  6045. }, {
  6046. closecallback: function () { }
  6047. }, { "style": { "height": "36px" } }).form; //创建窗体
  6048. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6049. break;
  6050. case "car": //模拟驾驶
  6051. _formdiv = new U.UF.UI.form(
  6052. "模拟驾驶",
  6053. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  6054. "id": "car",
  6055. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, { "style": { "height": "36px" } }).form; //创建窗体
  6060. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6061. break;
  6062. case "lineSearch": //路径搜索
  6063. _formdiv = new U.UF.UI.form(
  6064. "路径搜索",
  6065. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  6066. "id": "lineSearch",
  6067. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6073. break;
  6074. case "deepLearning": //深度学习
  6075. _formdiv = new U.UF.UI.form(
  6076. "深度学习",
  6077. $$("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/#" }), {
  6078. "id": "deepLearning",
  6079. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //创建窗体
  6084. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6085. break;
  6086. case "allHistory": //深度学习
  6087. _formdiv = new U.UF.UI.form(
  6088. "全历史",
  6089. $$("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/" }), {
  6090. "id": "allHistory",
  6091. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //创建窗体
  6096. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6097. break;
  6098. case "chatPDF": //ai编程
  6099. _formdiv = new U.UF.UI.form(
  6100. "chatPDF",
  6101. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6102. "id": "chatPDF",
  6103. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //创建窗体
  6108. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6109. break;
  6110. case "resources": //国家教育
  6111. _formdiv = new U.UF.UI.form(
  6112. "国家教育",
  6113. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6114. "id": "resources",
  6115. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //创建窗体
  6120. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6121. break;
  6122. case "codeEdit": //源码编辑
  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": "https://kitten.codemao.cn/" }), {
  6126. "id": "codeEdit",
  6127. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6133. break; //
  6134. case "MindMap": //MindMap
  6135. _formdiv = new U.UF.UI.form(
  6136. "MindMap",
  6137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6138. "id": "MindMap",
  6139. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6145. break;
  6146. case "netWorkPanel": //netWorkPanel
  6147. _formdiv = new U.UF.UI.form(
  6148. "netWorkPanel",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6150. "id": "netWorkPanel",
  6151. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //创建窗体
  6156. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6157. break;
  6158. case "GeoGebra": //GeoGebra
  6159. _formdiv = new U.UF.UI.form(
  6160. "GeoGebra",
  6161. $$("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" }), {
  6162. "id": "GeoGebra",
  6163. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //创建窗体
  6168. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6169. break;
  6170. case "translation": //翻译
  6171. _formdiv = new U.UF.UI.form(
  6172. "翻译",
  6173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6174. "id": "translation",
  6175. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6176. "onresize": function () { }
  6177. }, {
  6178. closecallback: function () { }
  6179. }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6181. break;
  6182. case "mohe": //魔盒
  6183. _formdiv = new U.UF.UI.form(
  6184. "魔盒识字",
  6185. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6186. "id": "mohe",
  6187. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6188. "onresize": function () { }
  6189. }, {
  6190. closecallback: function () { }
  6191. }, { "style": { "height": "36px" } }).form; //创建窗体
  6192. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6193. break;
  6194. case "24game": //24点
  6195. _formdiv = new U.UF.UI.form(
  6196. "24点",
  6197. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6198. "id": "24game",
  6199. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6205. break;
  6206. case "case":
  6207. _formdiv = new U.UF.UI.form(
  6208. "课程进展",
  6209. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6210. "id": "case",
  6211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6217. break;
  6218. case "snf":
  6219. _formdiv = new U.UF.UI.form(
  6220. "赛诺梵",
  6221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6222. "id": "snf",
  6223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6229. break;
  6230. case "hanFamily":
  6231. _formdiv = new U.UF.UI.form(
  6232. "汉字家族",
  6233. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6234. "id": "hanFamily",
  6235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6241. break;
  6242. case "hanClassics":
  6243. _formdiv = new U.UF.UI.form(
  6244. "国学经典",
  6245. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6246. "id": "hanClassics",
  6247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6253. break;
  6254. case "hanTraining":
  6255. _formdiv = new U.UF.UI.form(
  6256. "笔画训练",
  6257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6258. "id": "hanTraining",
  6259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () { }
  6263. }, { "style": { "height": "36px" } }).form; //创建窗体
  6264. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6265. break;
  6266. case "hanClass":
  6267. _formdiv = new U.UF.UI.form(
  6268. "书法课堂",
  6269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6270. "id": "hanClass",
  6271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //创建窗体
  6276. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6277. break;
  6278. case "han":
  6279. _formdiv = new U.UF.UI.form(
  6280. "汉字宫",
  6281. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6282. "id": "han",
  6283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //创建窗体
  6288. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6289. break;
  6290. case "projectGM": //课程管理
  6291. _formdiv = new U.UF.UI.form(
  6292. "课程管理",
  6293. $$("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 }), {
  6294. "id": "projectGM",
  6295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6296. "onresize": function () { }
  6297. }, {
  6298. closecallback: function () { }
  6299. }, { "style": { "height": "36px" } }).form; //创建窗体
  6300. _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); } }
  6301. break;
  6302. case "studyGM": //课程中心
  6303. _formdiv = new U.UF.UI.form(
  6304. "课程中心",
  6305. $$("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
  6306. "id": "study",
  6307. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6308. "onresize": function () { }
  6309. }, {
  6310. closecallback: function () { }
  6311. }, { "style": { "height": "36px" } }).form; //创建窗体
  6312. _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); } }
  6313. break;
  6314. // studentGM
  6315. case "studentGM": //学生管理
  6316. _formdiv = new U.UF.UI.form(
  6317. "学生管理",
  6318. $$("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 }), {
  6319. "id": "studentGM",
  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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6326. break;
  6327. case "evaluateGM": //学生评价
  6328. _formdiv = new U.UF.UI.form(
  6329. "学生评价",
  6330. $$("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 }), {
  6331. "id": "evaluateGM",
  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/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6338. break;
  6339. // classGM
  6340. case "classGM": //班级管理
  6341. _formdiv = new U.UF.UI.form(
  6342. "班级管理",
  6343. $$("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 }), {
  6344. "id": "classGM",
  6345. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. // dataGM
  6353. case "dataGM":
  6354. _formdiv = new U.UF.UI.form(
  6355. "我的资料",
  6356. $$("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 }), {
  6357. "id": "dataGM",
  6358. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. // caseGM
  6366. case "caseGM": //课程进展
  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/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6370. "id": "caseGM",
  6371. "style": { "width": "90%", "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/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6377. break;
  6378. // meterialGM
  6379. case "meterialGM": //素材库
  6380. _formdiv = new U.UF.UI.form(
  6381. "素材库",
  6382. $$("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 }), {
  6383. "id": "meterialGM",
  6384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _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); } }
  6390. break;
  6391. // evaluateSGM
  6392. case "evaluateSGM": //我的评价
  6393. _formdiv = new U.UF.UI.form(
  6394. "我的评价",
  6395. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6396. "id": "evaluateSGM",
  6397. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6398. "onresize": function () { }
  6399. }, {
  6400. closecallback: function () { }
  6401. }, { "style": { "height": "36px" } }).form; //创建窗体
  6402. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6403. break;
  6404. case "jupyter": //jupyter
  6405. _formdiv = new U.UF.UI.form(
  6406. "jupyter",
  6407. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6408. "id": "jupyter",
  6409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6410. "onresize": function () { }
  6411. }, {
  6412. closecallback: function () { }
  6413. }, { "style": { "height": "36px" } }).form; //创建窗体
  6414. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6415. break;
  6416. case "number": //数字实验室
  6417. _formdiv = new U.UF.UI.form(
  6418. "数字实验室",
  6419. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6420. "id": "number",
  6421. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6422. "onresize": function () { }
  6423. }, {
  6424. closecallback: function () { }
  6425. }, { "style": { "height": "36px" } }).form; //创建窗体
  6426. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6427. break;
  6428. case "studentCourse": //项目管理 学生
  6429. _formdiv = new U.UF.UI.form(
  6430. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6431. $$("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 }), {
  6432. "id": "studentCourse",
  6433. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6434. "onresize": function () { }
  6435. }, {
  6436. closecallback: function () { }
  6437. }, { "style": { "height": "36px" } }).form; //创建窗体
  6438. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6439. break;
  6440. case "studentCourseS": //项目管理 老师
  6441. _formdiv = new U.UF.UI.form(
  6442. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6443. $$("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 }), {
  6444. "id": "studentCourseS",
  6445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6446. "onresize": function () { }
  6447. }, {
  6448. closecallback: function () { }
  6449. }, { "style": { "height": "36px" } }).form; //创建窗体
  6450. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6451. break;
  6452. case "studentIndex": //项目中心
  6453. _formdiv = new U.UF.UI.form(
  6454. "项目中心",
  6455. $$("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 }), {
  6456. "id": "studentIndex",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6463. break;
  6464. case "CaseDesignS":
  6465. _formdiv = new U.UF.UI.form(
  6466. "项目进展",
  6467. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6468. "id": "case",
  6469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6470. "onresize": function () { }
  6471. }, {
  6472. closecallback: function () { }
  6473. }, { "style": { "height": "36px" } }).form; //创建窗体
  6474. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6475. break;
  6476. case "tcStudent": //腾讯学生管理
  6477. _formdiv = new U.UF.UI.form(
  6478. "学生管理",
  6479. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6480. "id": "tcStudent",
  6481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6482. "onresize": function () { }
  6483. }, {
  6484. closecallback: function () { }
  6485. }, { "style": { "height": "36px" } }).form; //创建窗体
  6486. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6487. break;
  6488. case "tcSchool": //腾讯学校管理
  6489. _formdiv = new U.UF.UI.form(
  6490. "学校管理",
  6491. $$("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 }), {
  6492. "id": "tcSchool",
  6493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6494. "onresize": function () { }
  6495. }, {
  6496. closecallback: function () { }
  6497. }, { "style": { "height": "36px" } }).form; //创建窗体
  6498. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6499. break;
  6500. case "tcTeacher": //腾讯学校管理
  6501. _formdiv = new U.UF.UI.form(
  6502. "教师管理",
  6503. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6504. "id": "tcTeacher",
  6505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6506. "onresize": function () { }
  6507. }, {
  6508. closecallback: function () { }
  6509. }, { "style": { "height": "36px" } }).form; //创建窗体
  6510. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6511. break;
  6512. case "teacher":
  6513. _formdiv = new U.UF.UI.form(
  6514. "教师管理",
  6515. $$("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 }), {
  6516. "id": "teacher",
  6517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6518. "onresize": function () { }
  6519. }, {
  6520. closecallback: function () { }
  6521. }, { "style": { "height": "36px" } }).form; //创建窗体
  6522. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6523. break;
  6524. case "tcData": //腾讯我的资料
  6525. _formdiv = new U.UF.UI.form(
  6526. "我的资料",
  6527. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6528. "id": "tcData",
  6529. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, { "style": { "height": "36px" } }).form; //创建窗体
  6534. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6535. break;
  6536. case "tcNotice": //腾讯消息通知
  6537. _formdiv = new U.UF.UI.form(
  6538. "消息通知",
  6539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6540. "id": "tcNotice",
  6541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6542. "onresize": function () { }
  6543. }, {
  6544. closecallback: function () { }
  6545. }, { "style": { "height": "36px" } }).form; //创建窗体
  6546. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6547. break;
  6548. case "myReport": //好友打开
  6549. _formdiv = new U.UF.UI.form(
  6550. "我的评价",
  6551. $$("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 }), {
  6552. "id": "myReport",
  6553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _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); } }
  6559. break;
  6560. case "learnAna": //好友打开
  6561. _formdiv = new U.UF.UI.form(
  6562. "学习分析",
  6563. $$("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 }), {
  6564. "id": "learnAna",
  6565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6566. "onresize": function () { }
  6567. }, {
  6568. closecallback: function () { }
  6569. }, { "style": { "height": "36px" } }).form; //创建窗体
  6570. _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); } }
  6571. break;
  6572. case "AIChat": //AI共创
  6573. _formdiv = new U.UF.UI.form(
  6574. "AI共创",
  6575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6576. "id": "AIChat",
  6577. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. istop: true,
  6581. closecallback: function () { $("#aichat_icon").remove(); },
  6582. narrowcallback: function () {
  6583. if (!$("#aichat_icon")[0]) {
  6584. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6585. }
  6586. },
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _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); } }
  6589. break;
  6590. case "ainew": //AI共创
  6591. _formdiv = new U.UF.UI.form(
  6592. "AI协同",
  6593. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6594. "id": "ainew",
  6595. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () { }
  6599. }, { "style": { "height": "36px" } }).form; //创建窗体
  6600. _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); } }
  6601. break;
  6602. case "gpt4": //gpt4
  6603. _formdiv = new U.UF.UI.form(
  6604. "AI助手",
  6605. $$("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 }), {
  6606. "id": "gpt4",
  6607. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "aigpt": //gpt4
  6615. _formdiv = new U.UF.UI.form(
  6616. "AI助手+",
  6617. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6618. "id": "aigpt",
  6619. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () {
  6623. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6624. }
  6625. }, { "style": { "height": "36px" } }).form; //创建窗体
  6626. _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); } }
  6627. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6628. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6629. })
  6630. break;
  6631. case "aiKnowledge": //aiKnowledge
  6632. _formdiv = new U.UF.UI.form(
  6633. "知识建构",
  6634. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6635. "id": "aiKnowledge",
  6636. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6637. "onresize": function () { }
  6638. }, {
  6639. closecallback: function () { }
  6640. }, { "style": { "height": "36px" } }).form; //创建窗体
  6641. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6642. break;
  6643. case "futureClass": //AI共创
  6644. _formdiv = new U.UF.UI.form(
  6645. "协同建构",
  6646. $$("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://beta.cscl.cocorobo.cn
  6647. "id": "synergyCourse",
  6648. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6649. "onresize": function () { }
  6650. }, {
  6651. closecallback: function () {
  6652. $("iframe", _formdiv)[0].contentWindow.loginout();
  6653. }
  6654. }, { "style": { "height": "36px" } }).form; //创建窗体
  6655. _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); } }
  6656. break;
  6657. case "aiagent": //ai agent
  6658. _formdiv = new U.UF.UI.form(
  6659. "AI Agent",
  6660. $$("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" }), {
  6661. "id": "AIAgent",
  6662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6668. break;
  6669. case "dataBoard": //数据看板
  6670. _formdiv = new U.UF.UI.form(
  6671. "数据看板",
  6672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoard?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6673. "id": "dataBoard",
  6674. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6675. "onresize": function () { }
  6676. }, {
  6677. closecallback: function () { }
  6678. }, { "style": { "height": "36px" } }).form; //创建窗体
  6679. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6680. break;
  6681. case "dataBoardSies": //数据融合
  6682. _formdiv = new U.UF.UI.form(
  6683. "数据融合",
  6684. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataBoardSies?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6685. "id": "dataBoardSies",
  6686. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6687. "onresize": function () { }
  6688. }, {
  6689. closecallback: function () { }
  6690. }, { "style": { "height": "36px" } }).form; //创建窗体
  6691. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6692. break;
  6693. case "dataBoardNew": //数据看板
  6694. _formdiv = new U.UF.UI.form(
  6695. "综合看板",
  6696. $$("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 }), {
  6697. "id": "dataBoardNew",
  6698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6699. "onresize": function () { }
  6700. }, {
  6701. closecallback: function () { }
  6702. }, { "style": { "height": "36px" } }).form; //创建窗体
  6703. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6704. break;
  6705. case "dataBoardTest": //数据看板
  6706. _formdiv = new U.UF.UI.form(
  6707. "评测看板",
  6708. $$("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 }), {
  6709. "id": "dataBoardTest",
  6710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6711. "onresize": function () { }
  6712. }, {
  6713. closecallback: function () { }
  6714. }, { "style": { "height": "36px" } }).form; //创建窗体
  6715. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6716. break;
  6717. case "AIAnalyse": //AI共创
  6718. _formdiv = new U.UF.UI.form(
  6719. "AI分析",
  6720. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6721. "id": "AIAnalyse",
  6722. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6723. "onresize": function () { }
  6724. }, {
  6725. closecallback: function () { }
  6726. }, { "style": { "height": "36px" } }).form; //创建窗体
  6727. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6728. break;
  6729. case "studioCourse": //AI共创
  6730. _formdiv = new U.UF.UI.form(
  6731. "工作管理",
  6732. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6733. "id": "studioCourse",
  6734. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6735. "onresize": function () { }
  6736. }, {
  6737. closecallback: function () { }
  6738. }, { "style": { "height": "36px" } }).form; //创建窗体
  6739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6740. break;
  6741. case "studioIndex": //AI共创
  6742. _formdiv = new U.UF.UI.form(
  6743. "工作中心",
  6744. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6745. "id": "studioIndex",
  6746. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6747. "onresize": function () { }
  6748. }, {
  6749. closecallback: function () { }
  6750. }, { "style": { "height": "36px" } }).form; //创建窗体
  6751. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6752. break;
  6753. case "source":
  6754. _formdiv = new U.UF.UI.form(
  6755. "教学资源",
  6756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6757. "id": "source",
  6758. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6759. "onresize": function () { }
  6760. }, {
  6761. closecallback: function () { }
  6762. }, { "style": { "height": "36px" } }).form; //创建窗体
  6763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6764. break;
  6765. case "testTeacher":
  6766. _formdiv = new U.UF.UI.form(
  6767. "智能表单",
  6768. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6769. "id": "testTeacher",
  6770. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6771. "onresize": function () { }
  6772. }, {
  6773. closecallback: function () { }
  6774. }, { "style": { "height": "36px" } }).form; //创建窗体
  6775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6776. break;
  6777. case "testStudent":
  6778. _formdiv = new U.UF.UI.form(
  6779. "教师中心",
  6780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6781. "id": "testStudent",
  6782. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6783. "onresize": function () { }
  6784. }, {
  6785. closecallback: function () { }
  6786. }, { "style": { "height": "36px" } }).form; //创建窗体
  6787. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6788. break;
  6789. case "testTeacherSies":
  6790. _formdiv = new U.UF.UI.form(
  6791. "教师管理",
  6792. $$("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 }), {
  6793. "id": "testTeacherSies",
  6794. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6795. "onresize": function () { }
  6796. }, {
  6797. closecallback: function () { }
  6798. }, { "style": { "height": "36px" } }).form; //创建窗体
  6799. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6800. break;
  6801. case "testStudentSies":
  6802. _formdiv = new U.UF.UI.form(
  6803. "教师中心",
  6804. $$("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 }), {
  6805. "id": "testStudentSies",
  6806. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6807. "onresize": function () { }
  6808. }, {
  6809. closecallback: function () { }
  6810. }, { "style": { "height": "36px" } }).form; //创建窗体
  6811. _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); } }
  6812. break;
  6813. case "ytpbl": //消息通知
  6814. _formdiv = new U.UF.UI.form(
  6815. "案例征集",
  6816. $$("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 }), {
  6817. "id": "ytpbl",
  6818. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6819. "onresize": function () { }
  6820. }, {
  6821. closecallback: function () { }
  6822. }, { "style": { "height": "36px" } }).form; //创建窗体
  6823. _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); } }
  6824. // 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");
  6825. break;
  6826. case "aiCourseResource": //人工智能窗体
  6827. _formdiv = new U.UF.UI.form(
  6828. false,
  6829. $$("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 }), {
  6830. "id": "aiCourseResource",
  6831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6832. "onresize": function () { },
  6833. "isdrag": false,
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _taskbar = ''
  6838. break;
  6839. case "szdjgCocooroboX": //图形化编程
  6840. _formdiv = new U.UF.UI.form(
  6841. "图形化编程",
  6842. $$("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" }), {
  6843. "id": "szdjgCocooroboX",
  6844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _taskbar = ''
  6850. break;
  6851. case "szdjgPython": //python编程
  6852. _formdiv = new U.UF.UI.form(
  6853. "Python编程",
  6854. $$("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" }), {
  6855. "id": "szdjgPython",
  6856. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _taskbar = ''
  6862. break;
  6863. case "Record":
  6864. _formdiv = new U.UF.UI.form(
  6865. "观察记录",
  6866. $$("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 }), {
  6867. "id": "Record",
  6868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6874. break;
  6875. case "aigptCourse":
  6876. _formdiv = new U.UF.UI.form(
  6877. "AI智能体",
  6878. $$("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' }), {
  6879. "id": "aigptCourse",
  6880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //创建窗体
  6885. _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); } }
  6886. break;
  6887. case "classroomObservation":
  6888. _formdiv = new U.UF.UI.form(
  6889. "课堂观察",
  6890. $$("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 }), {
  6891. "id": "classroomObservation",
  6892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _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); } }
  6898. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6899. break;
  6900. case "pblCourse":
  6901. _formdiv = new U.UF.UI.form(
  6902. "学生PBL",
  6903. $$("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 }), {
  6904. "id": "pblCourse",
  6905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6906. "onresize": function () { }
  6907. }, {
  6908. closecallback: function () { }
  6909. }, { "style": { "height": "36px" } }).form; //创建窗体
  6910. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6911. break;
  6912. case "appStore":
  6913. _formdiv = new U.UF.UI.form(
  6914. "应用中心",
  6915. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/appCenter?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6916. "id": "pblCourse",
  6917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6918. "onresize": function () { }
  6919. }, {
  6920. closecallback: function () { }
  6921. }, { "style": { "height": "36px" } }).form; //创建窗体
  6922. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6923. break;
  6924. }
  6925. //U.MD.D.I.openClick(str);
  6926. //如果有任务栏信息
  6927. if (_taskbar) {
  6928. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6929. }
  6930. }
  6931. // U.MD.D.I.openClick = function(str){
  6932. // var click = '';
  6933. // switch(str){
  6934. // case 'friend':
  6935. // click = '我的好友';
  6936. // break;
  6937. // case 'domain':
  6938. // click = '域名管理';
  6939. // break;
  6940. // case 'disk':
  6941. // click = '我的云盘';
  6942. // break;
  6943. // case 'word':
  6944. // click = 'Word';
  6945. // break;
  6946. // case 'excel':
  6947. // click = 'Execl';
  6948. // break;
  6949. // case 'txt':
  6950. // click = '文本文件';
  6951. // break;
  6952. // case 'lookupFriend':
  6953. // click = '查找好友';
  6954. // break;
  6955. // case 'ftp':
  6956. // click = 'FTP';
  6957. // break;
  6958. // case 'group':
  6959. // click = '群组';
  6960. // break;
  6961. // case 'set':
  6962. // click = '我的设置';
  6963. // break;
  6964. // case 'systemSet':
  6965. // click = '系统设置';
  6966. // break;
  6967. // case 'boomYun':
  6968. // click = '互联办公';
  6969. // break;
  6970. // case 'xz':
  6971. // click = '云端下载';
  6972. // break;
  6973. // case 'client':
  6974. // click = '有思浏览器';
  6975. // break;
  6976. // case 'backEndProgramming':
  6977. // click = '在线后台编程';
  6978. // break;
  6979. // case 'frontEndProgramming':
  6980. // click = '在线前端编程';
  6981. // break;
  6982. // default: break;
  6983. // }
  6984. // if(U.MD.D.I.Ip && click){
  6985. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6986. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6987. // })
  6988. // }
  6989. // }
  6990. /**
  6991. *函数作用:ajax简易函数,使用post格式
  6992. *@param url {data} 后台地址
  6993. *@param data {data} 参数json
  6994. *@param fn {data} 回调函数
  6995. *
  6996. */
  6997. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6998. // var xhr = new XMLHttpRequest();
  6999. // xhr.open("GET",url,true);
  7000. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7001. // xhr.onreadystatechange = function(){
  7002. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7003. // fn.call(this,xhr.responseText);
  7004. // }
  7005. // };
  7006. // xhr.send();
  7007. // }
  7008. /*判断是否是内网IP*/
  7009. // U.MD.D.I.isInnerIPFn = function(str){
  7010. // var curPageUrl = str;
  7011. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7012. // curPageUrl =curPageUrl.replace(reg1,'');
  7013. // // console.log('curPageUrl-1 '+curPageUrl);
  7014. // var reg2 = /\:+/g;//替换冒号为一点
  7015. // curPageUrl =curPageUrl.replace(reg2,'.');
  7016. // // console.log('curPageUrl-2 '+curPageUrl);
  7017. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7018. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7019. // if(curPageUrl[2] != '16'){
  7020. // return ipAddress;
  7021. // }else{
  7022. // return false;
  7023. // }
  7024. // }
  7025. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7026. // //compatibility for firefox and chrome
  7027. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7028. // var pc = new myPeerConnection({
  7029. // iceServers: []
  7030. // }),
  7031. // noop = function() {},
  7032. // localIPs = {},
  7033. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7034. // key;
  7035. // function iterateIP(ip) {
  7036. // if (!localIPs[ip]) onNewIP(ip);
  7037. // localIPs[ip] = true;
  7038. // }
  7039. // //create a bogus data channel
  7040. // pc.createDataChannel("");
  7041. // // create offer and set local description
  7042. // pc.createOffer().then(function(sdp) {
  7043. // sdp.sdp.split('\n').forEach(function(line) {
  7044. // if (line.indexOf('candidate') < 0) return;
  7045. // line.match(ipRegex).forEach(iterateIP);
  7046. // });
  7047. // pc.setLocalDescription(sdp, noop, noop);
  7048. // }).catch(function(reason) {
  7049. // // An error occurred, so handle the failure to connect
  7050. // });
  7051. // //sten for candidate events
  7052. // pc.onicecandidate = function(ice) {
  7053. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7054. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7055. // };
  7056. // }
  7057. // U.MD.D.I.getUserIpBool = function(callback){
  7058. // U.MD.D.I.getUserIP(function(ip){
  7059. // alert("Got IP! :" + ip);
  7060. // });
  7061. //}
  7062. //#endregion
  7063. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7064. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7065. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7066. _userinfo = US.userInfo, //登录用户信息
  7067. _userid = US.userInfo.userid //登录用户id
  7068. let _iframe;
  7069. let _cid = cid,
  7070. _stage = stage,
  7071. _task = task,
  7072. _tool = tool;
  7073. var _jie = $$("div", {
  7074. "style": {
  7075. "position": "absolute",
  7076. "bottom": "50px",
  7077. "right": "50px",
  7078. "zIndex": "9999",
  7079. "backgroundColor": "#2268bc",
  7080. "color": "#fff",
  7081. "padding": "12px 20px",
  7082. "cursor": "pointer",
  7083. "borderRadius": "4px",
  7084. },
  7085. "innerHTML": "提交作业"
  7086. })
  7087. let aTool = ''
  7088. let _loading = document.createElement('div')
  7089. _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;"
  7090. // _loading.id = "";
  7091. let _lchild = document.createElement('div')
  7092. let _limg = document.createElement('img')
  7093. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7094. _limg.style = "width: 26px;margin-right: 10px;"
  7095. _lchild.appendChild(_limg)
  7096. let _lspan = document.createElement('span')
  7097. _lspan.innerHTML = "上传中..."
  7098. _lchild.appendChild(_lspan)
  7099. _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%);"
  7100. _loading.appendChild(_lchild)
  7101. var _box = $$('div', {
  7102. "style": {
  7103. "position": "relative",
  7104. "width": "100%",
  7105. "height": "100%",
  7106. },
  7107. })
  7108. _box.appendChild(_loading)
  7109. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7110. switch (str) {
  7111. case "whiteboard":
  7112. aTool = 1;
  7113. _iframe = $$("iframe", {
  7114. "frameborder": "no",
  7115. "border": "0",
  7116. "scrolling ": "no",
  7117. "style": {
  7118. "cssText": "border:0;width:100%;height:100%"
  7119. },
  7120. "src": "https://beta.iwb.cocorobo.cn/"
  7121. })
  7122. _box.appendChild(_iframe);
  7123. _box.appendChild(_jie);
  7124. _formdiv = new U.UF.UI.form(
  7125. "电子白板",
  7126. _box, {
  7127. "id": "whiteboard" + cid + stage + task + tool,
  7128. "style": {
  7129. "width": "90%",
  7130. "height": "90%",
  7131. "overflow": 'hidden'
  7132. },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, {
  7137. "style": {
  7138. "height": "36px"
  7139. }
  7140. }).form; //创建窗体
  7141. _taskbar = {
  7142. "id": str + _formdiv.id,
  7143. "style": {
  7144. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7145. },
  7146. "name": "电子白板",
  7147. "forms": _formdiv,
  7148. "click": function () {
  7149. U.MD.D.I.openApplication(str, obj, info);
  7150. }
  7151. }
  7152. break;
  7153. case "mind":
  7154. aTool = 3;
  7155. _iframe = $$("iframe", {
  7156. "frameborder": "no",
  7157. "border": "0",
  7158. "scrolling ": "no",
  7159. "style": {
  7160. "cssText": "border:0;width:100%;height:100%"
  7161. },
  7162. "src": "/kityminder-editor/dist/index.html"
  7163. })
  7164. _box.appendChild(_iframe);
  7165. _box.appendChild(_jie);
  7166. _formdiv = new U.UF.UI.form(
  7167. "思维导图",
  7168. _box, { //"/jsmind/example/demo.html"
  7169. "id": "mind" + cid + stage + task + tool,
  7170. "style": {
  7171. "width": "90%",
  7172. "height": "90%",
  7173. "overflow": 'hidden'
  7174. },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, {
  7179. "style": {
  7180. "height": "36px"
  7181. }
  7182. }).form; //创建窗体
  7183. _taskbar = {
  7184. "id": str + _formdiv.id,
  7185. "style": {
  7186. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7187. },
  7188. "name": "思维导图",
  7189. "forms": _formdiv,
  7190. "click": function () {
  7191. U.MD.D.I.openApplication(str, obj, info);
  7192. }
  7193. }
  7194. break;
  7195. case "MindMap":
  7196. aTool = 3;
  7197. _iframe = $$("iframe", {
  7198. "frameborder": "no",
  7199. "border": "0",
  7200. "scrolling ": "no",
  7201. "style": {
  7202. "cssText": "border:0;width:100%;height:100%"
  7203. },
  7204. "src": "//cloud.cocorobo.cn/mind/"
  7205. })
  7206. _box.appendChild(_iframe);
  7207. _box.appendChild(_jie);
  7208. _formdiv = new U.UF.UI.form(
  7209. "思维导图",
  7210. _box, { //"/jsmind/example/demo.html"
  7211. "id": "mind" + cid + stage + task + tool,
  7212. "style": {
  7213. "width": "90%",
  7214. "height": "90%",
  7215. "overflow": 'hidden'
  7216. },
  7217. "onresize": function () { }
  7218. }, {
  7219. closecallback: function () { }
  7220. }, {
  7221. "style": {
  7222. "height": "36px"
  7223. }
  7224. }).form; //创建窗体
  7225. _taskbar = {
  7226. "id": str + _formdiv.id,
  7227. "style": {
  7228. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7229. },
  7230. "name": "思维导图",
  7231. "forms": _formdiv,
  7232. "click": function () {
  7233. U.MD.D.I.openApplication(str, obj, info);
  7234. }
  7235. }
  7236. break;
  7237. case "doc":
  7238. aTool = 6;
  7239. _iframe = $$("iframe", {
  7240. "frameborder": "no",
  7241. "border": "0",
  7242. "scrolling ": "no",
  7243. "style": {
  7244. "cssText": "border:0;width:100%;height:100%"
  7245. },
  7246. "src": "/Office/Word/WordEditArea.htm"
  7247. })
  7248. _box.appendChild(_iframe);
  7249. _box.appendChild(_jie);
  7250. _formdiv = new U.UF.UI.form(
  7251. "协同文档",
  7252. _box, {
  7253. "id": "doc" + cid + stage + task + tool,
  7254. "style": {
  7255. "width": "90%",
  7256. "height": "90%",
  7257. "overflow": 'hidden'
  7258. },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, {
  7263. "style": {
  7264. "height": "36px"
  7265. }
  7266. }).form; //创建窗体
  7267. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7268. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7269. })
  7270. _taskbar = {
  7271. "id": str + _formdiv.id,
  7272. "style": {
  7273. "backgroundImage": "url(/img/icon/doc.png)"
  7274. },
  7275. "name": "协同文档",
  7276. "forms": _formdiv,
  7277. "click": function () {
  7278. U.MD.D.I.openApplication(str, obj, info);
  7279. }
  7280. }
  7281. break;
  7282. case "mindNetwork": //好友打开
  7283. aTool = 7;
  7284. _iframe = $$("iframe", {
  7285. "webkitallowfullscreen": "",
  7286. "mozallowfullscreen": "",
  7287. "allowfullscreen": "",
  7288. "frameborder": "no",
  7289. "border": "0",
  7290. "scrolling ": "no",
  7291. "style": {
  7292. "cssText": "border:0; width:100%; height:100%;"
  7293. },
  7294. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7295. })
  7296. _box.appendChild(_iframe);
  7297. _box.appendChild(_jie);
  7298. _formdiv = new U.UF.UI.form(
  7299. "思维网格",
  7300. _box, {
  7301. "id": "mindNetwork" + cid + stage + task + tool,
  7302. "style": {
  7303. "width": "90%",
  7304. "height": "90%",
  7305. "overflow": 'hidden'
  7306. },
  7307. "onresize": function () { }
  7308. }, {
  7309. closecallback: function () { }
  7310. }, {
  7311. "style": {
  7312. "height": "36px"
  7313. }
  7314. }).form; //创建窗体
  7315. _taskbar = {
  7316. "id": str + _formdiv.id,
  7317. "style": {
  7318. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7319. },
  7320. "name": "思维网格",
  7321. "forms": _formdiv,
  7322. "click": function () {
  7323. U.MD.D.I.openApplication(str, obj, info);
  7324. }
  7325. }
  7326. break;
  7327. case "courseDesign":
  7328. _iframe = $$("iframe", {
  7329. "webkitallowfullscreen": "",
  7330. "mozallowfullscreen": "",
  7331. "allowfullscreen": "",
  7332. "frameborder": "no",
  7333. "border": "0",
  7334. "scrolling ": "no",
  7335. "style": {
  7336. "cssText": "border:0; width:100%; height:100%;"
  7337. },
  7338. "src": "/course-design-vue"
  7339. })
  7340. _box.appendChild(_iframe);
  7341. _box.appendChild(_jie);
  7342. _formdiv = new U.UF.UI.form(
  7343. "项目设计",
  7344. _box, {
  7345. "id": "courseDesign" + cid + stage + task + tool,
  7346. "style": {
  7347. "width": "90%",
  7348. "height": "90%",
  7349. "overflow": 'hidden'
  7350. },
  7351. "onresize": function () { }
  7352. }, {
  7353. closecallback: function () { }
  7354. }, {
  7355. "style": {
  7356. "height": "36px"
  7357. }
  7358. }).form; //创建窗体
  7359. _taskbar = {
  7360. "id": str + _formdiv.id,
  7361. "style": {
  7362. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7363. },
  7364. "name": "项目设计",
  7365. "forms": _formdiv,
  7366. "click": function () {
  7367. U.MD.D.I.openApplication(str, obj, info);
  7368. }
  7369. }
  7370. break;
  7371. }
  7372. const script1 = document.createElement("script");
  7373. script1.type = "text/javascript";
  7374. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7375. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7376. const script2 = document.createElement("script");
  7377. script2.type = "text/javascript";
  7378. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7379. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7380. const script3 = document.createElement("script");
  7381. script3.type = "text/javascript";
  7382. script3.charset = "UTF-8";
  7383. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7384. const script4 = document.createElement("script");
  7385. script4.type = "text/javascript";
  7386. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7387. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7388. if (_iframe) {
  7389. if (str == 'doc') {
  7390. _iframe = _formdiv.querySelector('iframe')
  7391. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7392. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7393. _iframe.contentWindow.document.body.appendChild(script1);
  7394. _iframe.contentWindow.document.body.appendChild(script2);
  7395. // _iframe.contentWindow.document.body.appendChild(script3);
  7396. _iframe.contentWindow.document.body.appendChild(script4);
  7397. })
  7398. if (onloadListener) {
  7399. _iframe.contentDocument.location.reload()
  7400. } else {
  7401. _iframe.contentDocument.location.reload()
  7402. }
  7403. } else if (str == 'courseDesign') {
  7404. U.UF.DL.iframeLoad(_iframe, function () {
  7405. // _iframe.contentWindow.U.MD.O.W.load();
  7406. // _iframe.contentWindow.document.body.appendChild(script1);
  7407. _iframe.contentWindow.document.body.appendChild(script2);
  7408. _iframe.contentWindow.document.body.appendChild(script4);
  7409. })
  7410. } else if (str == 'mind') {
  7411. _iframe = _formdiv.querySelector('iframe')
  7412. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7413. //
  7414. _iframe.contentWindow.document.body.appendChild(script1);
  7415. _iframe.contentWindow.document.body.appendChild(script2);
  7416. _iframe.contentWindow.document.body.appendChild(script4);
  7417. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7418. })
  7419. if (onloadListener) {
  7420. _iframe.contentDocument.location.reload()
  7421. } else {
  7422. _iframe.contentDocument.location.reload()
  7423. }
  7424. } else if (str == 'whiteboard') {
  7425. _iframe = _formdiv.querySelector('iframe')
  7426. let onloadListener = _iframe.onload = () => {
  7427. _iframe.contentWindow.document.body.appendChild(script1);
  7428. _iframe.contentWindow.document.body.appendChild(script2);
  7429. _iframe.contentWindow.document.body.appendChild(script4);
  7430. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7431. };
  7432. // if (onloadListener) {
  7433. // try {
  7434. // _iframe.src += "?cocorobo="+new Date().getTime()
  7435. // _iframe.contentWindow.document.location.reload()
  7436. // } catch (error) {
  7437. // }
  7438. // } else {
  7439. // _iframe.contentDocument.location.reload()
  7440. // }
  7441. } else {
  7442. _iframe.onload = () => {
  7443. _iframe.contentWindow.document.body.appendChild(script1);
  7444. _iframe.contentWindow.document.body.appendChild(script2);
  7445. // _iframe.contentWindow.document.body.appendChild(script3);
  7446. _iframe.contentWindow.document.body.appendChild(script4);
  7447. };
  7448. }
  7449. _jie.onclick = async () => {
  7450. let text = ''
  7451. if (aTool == 1) {
  7452. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7453. } else if (aTool == 6) {
  7454. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7455. } else if (aTool == 3) {
  7456. text = await U.MD.D.I.getEditorContent(_iframe);
  7457. }
  7458. _loading.style.display = 'flex'
  7459. console.log(_loading);
  7460. var _ajs = _iframe.contentWindow.document.createElement("script");
  7461. _ajs.type = "text/javascript";
  7462. _ajs.innerHTML =
  7463. // 'console.log(' + _loading + ');\n' +
  7464. 'var _js = document.createElement("script");\n' +
  7465. '_js.type="text/javascript";\n' +
  7466. '_js.charset="UTF-8";\n' +
  7467. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7468. "_js.onload = function(){\n" +
  7469. ' var a = document.getElementsByTagName("img")\n' +
  7470. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7471. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7472. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7473. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7474. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7475. "beforeUpload_shishi(file," +
  7476. "'" +
  7477. _userid +
  7478. "'" +
  7479. ", " +
  7480. "'" +
  7481. _cid +
  7482. "'" +
  7483. ", " +
  7484. "'" +
  7485. _stage +
  7486. "'" +
  7487. ", " +
  7488. "'" +
  7489. _task +
  7490. "'" +
  7491. ", " +
  7492. "'" +
  7493. _tool +
  7494. "'" +
  7495. ", " +
  7496. "'" +
  7497. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7498. "'" +
  7499. ", " +
  7500. "'" +
  7501. aTool +
  7502. "'" +
  7503. ", " +
  7504. "`" +
  7505. text +
  7506. "`" +
  7507. ")\n" +
  7508. " });\n" +
  7509. "}\n" +
  7510. "document.head.appendChild(_js);\n";
  7511. _iframe.contentWindow.document.head.appendChild(_ajs);
  7512. }
  7513. }
  7514. //U.MD.D.I.openClick(str);
  7515. //如果有任务栏信息
  7516. // if (_taskbar) {
  7517. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7518. // }
  7519. }
  7520. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7521. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7522. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7523. _userinfo = US.userInfo, //登录用户信息
  7524. _userid = US.userInfo.userid //登录用户id
  7525. let _iframe;
  7526. let _cid = cid,
  7527. _stage = stage,
  7528. _task = task,
  7529. _tool = tool;
  7530. var _jie = $$("div", {
  7531. "style": {
  7532. "position": "absolute",
  7533. "bottom": "50px",
  7534. "right": "50px",
  7535. "zIndex": "9999",
  7536. "backgroundColor": "#2268bc",
  7537. "color": "#fff",
  7538. "padding": "12px 20px",
  7539. "cursor": "pointer",
  7540. "borderRadius": "4px",
  7541. },
  7542. "innerHTML": "提交作业"
  7543. })
  7544. let aTool = ''
  7545. let _loading = document.createElement('div')
  7546. _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;"
  7547. // _loading.id = "";
  7548. let _lchild = document.createElement('div')
  7549. let _limg = document.createElement('img')
  7550. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7551. _limg.style = "width: 26px;margin-right: 10px;"
  7552. _lchild.appendChild(_limg)
  7553. let _lspan = document.createElement('span')
  7554. _lspan.innerHTML = "上传中..."
  7555. _lchild.appendChild(_lspan)
  7556. _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%);"
  7557. _loading.appendChild(_lchild)
  7558. let _box = $$('div', {
  7559. "style": {
  7560. "position": "relative",
  7561. "width": "100%",
  7562. "height": "100%",
  7563. },
  7564. })
  7565. _box.appendChild(_loading)
  7566. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7567. switch (str) {
  7568. case "whiteboard":
  7569. aTool = 1;
  7570. _iframe = $$("iframe", {
  7571. "frameborder": "no",
  7572. "border": "0",
  7573. "scrolling ": "no",
  7574. "style": {
  7575. "cssText": "border:0;width:100%;height:100%"
  7576. },
  7577. "src": "https://beta.iwb.cocorobo.cn/"
  7578. })
  7579. _box.appendChild(_iframe);
  7580. _box.appendChild(_jie);
  7581. _formdiv = new U.UF.UI.form(
  7582. "电子白板",
  7583. _box, {
  7584. "id": "whiteboard" + cid + stage + task + tool,
  7585. "style": {
  7586. "width": "90%",
  7587. "height": "90%",
  7588. "overflow": 'hidden'
  7589. },
  7590. "onresize": function () { }
  7591. }, {
  7592. closecallback: function () { }
  7593. }, {
  7594. "style": {
  7595. "height": "36px"
  7596. }
  7597. }).form; //创建窗体
  7598. _taskbar = {
  7599. "id": str + _formdiv.id,
  7600. "style": {
  7601. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7602. },
  7603. "name": "电子白板",
  7604. "forms": _formdiv,
  7605. "click": function () {
  7606. U.MD.D.I.openApplication(str, obj, info);
  7607. }
  7608. }
  7609. break;
  7610. case "mind":
  7611. aTool = 3;
  7612. _iframe = $$("iframe", {
  7613. "frameborder": "no",
  7614. "border": "0",
  7615. "scrolling ": "no",
  7616. "style": {
  7617. "cssText": "border:0;width:100%;height:100%"
  7618. },
  7619. "src": "/kityminder-editor/dist/index.html"
  7620. })
  7621. _box.appendChild(_iframe);
  7622. _box.appendChild(_jie);
  7623. _formdiv = new U.UF.UI.form(
  7624. "思维导图",
  7625. _box, { //"/jsmind/example/demo.html"
  7626. "id": "mind" + cid + stage + task + tool,
  7627. "style": {
  7628. "width": "90%",
  7629. "height": "90%",
  7630. "overflow": 'hidden'
  7631. },
  7632. "onresize": function () { }
  7633. }, {
  7634. closecallback: function () { }
  7635. }, {
  7636. "style": {
  7637. "height": "36px"
  7638. }
  7639. }).form; //创建窗体
  7640. _taskbar = {
  7641. "id": str + _formdiv.id,
  7642. "style": {
  7643. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7644. },
  7645. "name": "思维导图",
  7646. "forms": _formdiv,
  7647. "click": function () {
  7648. U.MD.D.I.openApplication(str, obj, info);
  7649. }
  7650. }
  7651. break;
  7652. case "MindMap":
  7653. aTool = 3;
  7654. _iframe = $$("iframe", {
  7655. "frameborder": "no",
  7656. "border": "0",
  7657. "scrolling ": "no",
  7658. "style": {
  7659. "cssText": "border:0;width:100%;height:100%"
  7660. },
  7661. "src": "//cloud.cocorobo.cn/mind/"
  7662. })
  7663. _box.appendChild(_iframe);
  7664. _box.appendChild(_jie);
  7665. _formdiv = new U.UF.UI.form(
  7666. "思维导图",
  7667. _box, { //"/jsmind/example/demo.html"
  7668. "id": "mind" + cid + stage + task + tool,
  7669. "style": {
  7670. "width": "90%",
  7671. "height": "90%",
  7672. "overflow": 'hidden'
  7673. },
  7674. "onresize": function () { }
  7675. }, {
  7676. closecallback: function () { }
  7677. }, {
  7678. "style": {
  7679. "height": "36px"
  7680. }
  7681. }).form; //创建窗体
  7682. _taskbar = {
  7683. "id": str + _formdiv.id,
  7684. "style": {
  7685. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7686. },
  7687. "name": "思维导图",
  7688. "forms": _formdiv,
  7689. "click": function () {
  7690. U.MD.D.I.openApplication(str, obj, info);
  7691. }
  7692. }
  7693. break;
  7694. case "doc":
  7695. aTool = 6;
  7696. _iframe = $$("iframe", {
  7697. "frameborder": "no",
  7698. "border": "0",
  7699. "scrolling ": "no",
  7700. "style": {
  7701. "cssText": "border:0;width:100%;height:100%"
  7702. },
  7703. "src": "/Office/Word/WordEditArea.htm"
  7704. })
  7705. _box.appendChild(_iframe);
  7706. _box.appendChild(_jie);
  7707. _formdiv = new U.UF.UI.form(
  7708. "协同文档",
  7709. _box, {
  7710. "id": "doc" + cid + stage + task + tool,
  7711. "style": {
  7712. "width": "90%",
  7713. "height": "90%",
  7714. "overflow": 'hidden'
  7715. },
  7716. "onresize": function () { }
  7717. }, {
  7718. closecallback: function () { }
  7719. }, {
  7720. "style": {
  7721. "height": "36px"
  7722. }
  7723. }).form; //创建窗体
  7724. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7725. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7726. })
  7727. _taskbar = {
  7728. "id": str + _formdiv.id,
  7729. "style": {
  7730. "backgroundImage": "url(/img/icon/doc.png)"
  7731. },
  7732. "name": "协同文档",
  7733. "forms": _formdiv,
  7734. "click": function () {
  7735. U.MD.D.I.openApplication(str, obj, info);
  7736. }
  7737. }
  7738. break;
  7739. case "mindNetwork": //好友打开
  7740. aTool = 7;
  7741. _iframe = $$("iframe", {
  7742. "webkitallowfullscreen": "",
  7743. "mozallowfullscreen": "",
  7744. "allowfullscreen": "",
  7745. "frameborder": "no",
  7746. "border": "0",
  7747. "scrolling ": "no",
  7748. "style": {
  7749. "cssText": "border:0; width:100%; height:100%;"
  7750. },
  7751. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7752. })
  7753. _box.appendChild(_iframe);
  7754. _box.appendChild(_jie);
  7755. _formdiv = new U.UF.UI.form(
  7756. "思维网格",
  7757. _box, {
  7758. "id": "mindNetwork" + 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. _taskbar = {
  7773. "id": str + _formdiv.id,
  7774. "style": {
  7775. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7776. },
  7777. "name": "思维网格",
  7778. "forms": _formdiv,
  7779. "click": function () {
  7780. U.MD.D.I.openApplication(str, obj, info);
  7781. }
  7782. }
  7783. break;
  7784. case "courseDesign":
  7785. _iframe = $$("iframe", {
  7786. "webkitallowfullscreen": "",
  7787. "mozallowfullscreen": "",
  7788. "allowfullscreen": "",
  7789. "frameborder": "no",
  7790. "border": "0",
  7791. "scrolling ": "no",
  7792. "style": {
  7793. "cssText": "border:0; width:100%; height:100%;"
  7794. },
  7795. "src": "/course-design-vue"
  7796. })
  7797. _box.appendChild(_iframe);
  7798. _box.appendChild(_jie);
  7799. _formdiv = new U.UF.UI.form(
  7800. "项目设计",
  7801. _box, {
  7802. "id": "courseDesign" + cid + stage + task + tool,
  7803. "style": {
  7804. "width": "90%",
  7805. "height": "90%",
  7806. "overflow": 'hidden'
  7807. },
  7808. "onresize": function () { }
  7809. }, {
  7810. closecallback: function () { }
  7811. }, {
  7812. "style": {
  7813. "height": "36px"
  7814. }
  7815. }).form; //创建窗体
  7816. _taskbar = {
  7817. "id": str + _formdiv.id,
  7818. "style": {
  7819. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7820. },
  7821. "name": "项目设计",
  7822. "forms": _formdiv,
  7823. "click": function () {
  7824. U.MD.D.I.openApplication(str, obj, info);
  7825. }
  7826. }
  7827. break;
  7828. }
  7829. const script1 = document.createElement("script");
  7830. script1.type = "text/javascript";
  7831. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7832. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7833. const script2 = document.createElement("script");
  7834. script2.type = "text/javascript";
  7835. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7836. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7837. const script3 = document.createElement("script");
  7838. script3.type = "text/javascript";
  7839. script3.charset = "UTF-8";
  7840. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7841. const script4 = document.createElement("script");
  7842. script4.type = "text/javascript";
  7843. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7844. script4.src = window.origin + "/js/Common/jietu2E.js";
  7845. if (_iframe) {
  7846. if (str == 'doc') {
  7847. _iframe = _formdiv.querySelector('iframe')
  7848. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7849. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7850. _iframe.contentWindow.document.body.appendChild(script1);
  7851. _iframe.contentWindow.document.body.appendChild(script2);
  7852. // _iframe.contentWindow.document.body.appendChild(script3);
  7853. _iframe.contentWindow.document.body.appendChild(script4);
  7854. })
  7855. if (onloadListener) {
  7856. _iframe.contentDocument.location.reload()
  7857. } else {
  7858. _iframe.contentDocument.location.reload()
  7859. }
  7860. } else if (str == 'courseDesign') {
  7861. U.UF.DL.iframeLoad(_iframe, function () {
  7862. // _iframe.contentWindow.U.MD.O.W.load();
  7863. // _iframe.contentWindow.document.body.appendChild(script1);
  7864. _iframe.contentWindow.document.body.appendChild(script2);
  7865. _iframe.contentWindow.document.body.appendChild(script4);
  7866. })
  7867. } else if (str == 'mind') {
  7868. _iframe = _formdiv.querySelector('iframe')
  7869. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7870. //
  7871. _iframe.contentWindow.document.body.appendChild(script1);
  7872. _iframe.contentWindow.document.body.appendChild(script2);
  7873. _iframe.contentWindow.document.body.appendChild(script4);
  7874. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7875. })
  7876. if (onloadListener) {
  7877. _iframe.contentDocument.location.reload()
  7878. } else {
  7879. _iframe.contentDocument.location.reload()
  7880. }
  7881. } else if (str == 'whiteboard') {
  7882. _iframe = _formdiv.querySelector('iframe')
  7883. let onloadListener = _iframe.onload = () => {
  7884. _iframe.contentWindow.document.body.appendChild(script1);
  7885. _iframe.contentWindow.document.body.appendChild(script2);
  7886. _iframe.contentWindow.document.body.appendChild(script4);
  7887. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7888. };
  7889. // if (onloadListener) {
  7890. // try {
  7891. // _iframe.src += "?cocorobo="+new Date().getTime()
  7892. // _iframe.contentWindow.document.location.reload()
  7893. // } catch (error) {
  7894. // }
  7895. // } else {
  7896. // _iframe.contentDocument.location.reload()
  7897. // }
  7898. } else {
  7899. _iframe.onload = () => {
  7900. _iframe.contentWindow.document.body.appendChild(script1);
  7901. _iframe.contentWindow.document.body.appendChild(script2);
  7902. // _iframe.contentWindow.document.body.appendChild(script3);
  7903. _iframe.contentWindow.document.body.appendChild(script4);
  7904. };
  7905. }
  7906. _jie.onclick = async () => {
  7907. let text = ''
  7908. if (aTool == 1) {
  7909. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7910. } else if (aTool == 6) {
  7911. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7912. } else if (aTool == 3) {
  7913. text = await U.MD.D.I.getEditorContent(_iframe);
  7914. }
  7915. _loading.style.display = 'flex'
  7916. console.log(_loading);
  7917. var _ajs = _iframe.contentWindow.document.createElement("script");
  7918. _ajs.type = "text/javascript";
  7919. _ajs.innerHTML =
  7920. // 'console.log(' + _loading + ');\n' +
  7921. 'var _js = document.createElement("script");\n' +
  7922. '_js.type="text/javascript";\n' +
  7923. '_js.charset="UTF-8";\n' +
  7924. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7925. "_js.onload = function(){\n" +
  7926. ' var a = document.getElementsByTagName("img")\n' +
  7927. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7928. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7929. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7930. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7931. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7932. "beforeUpload_shishi(file," +
  7933. "'" +
  7934. _userid +
  7935. "'" +
  7936. ", " +
  7937. "'" +
  7938. _cid +
  7939. "'" +
  7940. ", " +
  7941. "'" +
  7942. _stage +
  7943. "'" +
  7944. ", " +
  7945. "'" +
  7946. _task +
  7947. "'" +
  7948. ", " +
  7949. "'" +
  7950. _tool +
  7951. "'" +
  7952. ", " +
  7953. "'" +
  7954. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7955. "'" +
  7956. ", " +
  7957. "'" +
  7958. aTool +
  7959. "'" +
  7960. ", " +
  7961. "`" +
  7962. text +
  7963. "`" +
  7964. ")\n" +
  7965. " });\n" +
  7966. "}\n" +
  7967. "document.head.appendChild(_js);\n";
  7968. _iframe.contentWindow.document.head.appendChild(_ajs);
  7969. }
  7970. }
  7971. //U.MD.D.I.openClick(str);
  7972. //如果有任务栏信息
  7973. // if (_taskbar) {
  7974. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7975. // }
  7976. }
  7977. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7978. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7979. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7980. _userid = student.userid, //登录用户id
  7981. _username = student.student //用户名字
  7982. let _iframe;
  7983. let _cid = cid,
  7984. _stage = stage,
  7985. _task = task,
  7986. _tool = tool;
  7987. var _jie = $$("div", {
  7988. "style": {
  7989. "position": "absolute",
  7990. "bottom": "50px",
  7991. "right": "50px",
  7992. "zIndex": "9999",
  7993. "backgroundColor": "#2268bc",
  7994. "color": "#fff",
  7995. "padding": "12px 20px",
  7996. "cursor": "pointer",
  7997. "borderRadius": "4px",
  7998. },
  7999. "innerHTML": "提交作业"
  8000. })
  8001. let aTool = ''
  8002. let _loading = document.createElement('div')
  8003. _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;"
  8004. // _loading.id = "";
  8005. let _lchild = document.createElement('div')
  8006. let _limg = document.createElement('img')
  8007. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8008. _limg.style = "width: 26px;margin-right: 10px;"
  8009. _lchild.appendChild(_limg)
  8010. let _lspan = document.createElement('span')
  8011. _lspan.innerHTML = "上传中..."
  8012. _lchild.appendChild(_lspan)
  8013. _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%);"
  8014. _loading.appendChild(_lchild)
  8015. var _box = $$('div', {
  8016. "style": {
  8017. "position": "relative",
  8018. "width": "100%",
  8019. "height": "100%",
  8020. },
  8021. })
  8022. _box.appendChild(_loading)
  8023. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8024. switch (str) {
  8025. case "whiteboard":
  8026. aTool = 1;
  8027. _iframe = $$("iframe", {
  8028. "frameborder": "no",
  8029. "border": "0",
  8030. "scrolling ": "no",
  8031. "style": {
  8032. "cssText": "border:0;width:100%;height:100%"
  8033. },
  8034. "src": "https://beta.iwb.cocorobo.cn/"
  8035. })
  8036. _box.appendChild(_iframe);
  8037. _box.appendChild(_jie);
  8038. _formdiv = new U.UF.UI.form(
  8039. "电子白板-" + _username,
  8040. _box, {
  8041. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8042. "style": {
  8043. "width": "90%",
  8044. "height": "90%",
  8045. "overflow": 'hidden'
  8046. },
  8047. "onresize": function () { }
  8048. }, {
  8049. closecallback: function () { }
  8050. }, {
  8051. "style": {
  8052. "height": "36px"
  8053. }
  8054. }).form; //创建窗体
  8055. _taskbar = {
  8056. "id": str + _formdiv.id,
  8057. "style": {
  8058. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8059. },
  8060. "name": "电子白板",
  8061. "forms": _formdiv,
  8062. "click": function () {
  8063. U.MD.D.I.openApplication(str, obj, info);
  8064. }
  8065. }
  8066. break;
  8067. case "mind":
  8068. aTool = 3;
  8069. _iframe = $$("iframe", {
  8070. "frameborder": "no",
  8071. "border": "0",
  8072. "scrolling ": "no",
  8073. "style": {
  8074. "cssText": "border:0;width:100%;height:100%"
  8075. },
  8076. "src": "/kityminder-editor/dist/index.html"
  8077. })
  8078. _box.appendChild(_iframe);
  8079. _box.appendChild(_jie);
  8080. _formdiv = new U.UF.UI.form(
  8081. "思维导图-" + _username,
  8082. _box, { //"/jsmind/example/demo.html"
  8083. "id": "mind" + cid + stage + task + tool + _userid,
  8084. "style": {
  8085. "width": "90%",
  8086. "height": "90%",
  8087. "overflow": 'hidden'
  8088. },
  8089. "onresize": function () { }
  8090. }, {
  8091. closecallback: function () { }
  8092. }, {
  8093. "style": {
  8094. "height": "36px"
  8095. }
  8096. }).form; //创建窗体
  8097. _taskbar = {
  8098. "id": str + _formdiv.id,
  8099. "style": {
  8100. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8101. },
  8102. "name": "思维导图",
  8103. "forms": _formdiv,
  8104. "click": function () {
  8105. U.MD.D.I.openApplication(str, obj, info);
  8106. }
  8107. }
  8108. break;
  8109. case "MindMap":
  8110. aTool = 3;
  8111. _iframe = $$("iframe", {
  8112. "frameborder": "no",
  8113. "border": "0",
  8114. "scrolling ": "no",
  8115. "style": {
  8116. "cssText": "border:0;width:100%;height:100%"
  8117. },
  8118. "src": "//cloud.cocorobo.cn/mind/"
  8119. })
  8120. _box.appendChild(_iframe);
  8121. _box.appendChild(_jie);
  8122. _formdiv = new U.UF.UI.form(
  8123. "思维导图-" + _username,
  8124. _box, { //"/jsmind/example/demo.html"
  8125. "id": "mind" + cid + stage + task + tool + _userid,
  8126. "style": {
  8127. "width": "90%",
  8128. "height": "90%",
  8129. "overflow": 'hidden'
  8130. },
  8131. "onresize": function () { }
  8132. }, {
  8133. closecallback: function () { }
  8134. }, {
  8135. "style": {
  8136. "height": "36px"
  8137. }
  8138. }).form; //创建窗体
  8139. _taskbar = {
  8140. "id": str + _formdiv.id,
  8141. "style": {
  8142. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8143. },
  8144. "name": "思维导图",
  8145. "forms": _formdiv,
  8146. "click": function () {
  8147. U.MD.D.I.openApplication(str, obj, info);
  8148. }
  8149. }
  8150. break;
  8151. case "doc":
  8152. aTool = 6;
  8153. _iframe = $$("iframe", {
  8154. "frameborder": "no",
  8155. "border": "0",
  8156. "scrolling ": "no",
  8157. "style": {
  8158. "cssText": "border:0;width:100%;height:100%"
  8159. },
  8160. "src": "/Office/Word/WordEditArea.htm"
  8161. })
  8162. _box.appendChild(_iframe);
  8163. _box.appendChild(_jie);
  8164. _formdiv = new U.UF.UI.form(
  8165. "协同文档-" + _username,
  8166. _box, {
  8167. "id": "doc" + cid + stage + task + tool + _userid,
  8168. "style": {
  8169. "width": "90%",
  8170. "height": "90%",
  8171. "overflow": 'hidden'
  8172. },
  8173. "onresize": function () { }
  8174. }, {
  8175. closecallback: function () { }
  8176. }, {
  8177. "style": {
  8178. "height": "36px"
  8179. }
  8180. }).form; //创建窗体
  8181. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8182. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8183. })
  8184. _taskbar = {
  8185. "id": str + _formdiv.id,
  8186. "style": {
  8187. "backgroundImage": "url(/img/icon/doc.png)"
  8188. },
  8189. "name": "协同文档",
  8190. "forms": _formdiv,
  8191. "click": function () {
  8192. U.MD.D.I.openApplication(str, obj, info);
  8193. }
  8194. }
  8195. break;
  8196. case "mindNetwork": //好友打开
  8197. aTool = 7;
  8198. _iframe = $$("iframe", {
  8199. "webkitallowfullscreen": "",
  8200. "mozallowfullscreen": "",
  8201. "allowfullscreen": "",
  8202. "frameborder": "no",
  8203. "border": "0",
  8204. "scrolling ": "no",
  8205. "style": {
  8206. "cssText": "border:0; width:100%; height:100%;"
  8207. },
  8208. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8209. })
  8210. _box.appendChild(_iframe);
  8211. _box.appendChild(_jie);
  8212. _formdiv = new U.UF.UI.form(
  8213. "思维网格-" + _username,
  8214. _box, {
  8215. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  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. _taskbar = {
  8230. "id": str + _formdiv.id,
  8231. "style": {
  8232. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8233. },
  8234. "name": "思维网格",
  8235. "forms": _formdiv,
  8236. "click": function () {
  8237. U.MD.D.I.openApplication(str, obj, info);
  8238. }
  8239. }
  8240. break;
  8241. case "courseDesign":
  8242. _iframe = $$("iframe", {
  8243. "webkitallowfullscreen": "",
  8244. "mozallowfullscreen": "",
  8245. "allowfullscreen": "",
  8246. "frameborder": "no",
  8247. "border": "0",
  8248. "scrolling ": "no",
  8249. "style": {
  8250. "cssText": "border:0; width:100%; height:100%;"
  8251. },
  8252. "src": "/course-design-vue"
  8253. })
  8254. _box.appendChild(_iframe);
  8255. _box.appendChild(_jie);
  8256. _formdiv = new U.UF.UI.form(
  8257. "项目设计-" + _username,
  8258. _box, {
  8259. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8260. "style": {
  8261. "width": "90%",
  8262. "height": "90%",
  8263. "overflow": 'hidden'
  8264. },
  8265. "onresize": function () { }
  8266. }, {
  8267. closecallback: function () { }
  8268. }, {
  8269. "style": {
  8270. "height": "36px"
  8271. }
  8272. }).form; //创建窗体
  8273. _taskbar = {
  8274. "id": str + _formdiv.id,
  8275. "style": {
  8276. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8277. },
  8278. "name": "项目设计",
  8279. "forms": _formdiv,
  8280. "click": function () {
  8281. U.MD.D.I.openApplication(str, obj, info);
  8282. }
  8283. }
  8284. break;
  8285. }
  8286. const script1 = document.createElement("script");
  8287. script1.type = "text/javascript";
  8288. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8289. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8290. const script2 = document.createElement("script");
  8291. script2.type = "text/javascript";
  8292. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8293. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8294. const script3 = document.createElement("script");
  8295. script3.type = "text/javascript";
  8296. script3.charset = "UTF-8";
  8297. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8298. const script4 = document.createElement("script");
  8299. script4.type = "text/javascript";
  8300. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8301. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8302. if (_iframe) {
  8303. if (str == 'doc') {
  8304. _iframe = _formdiv.querySelector('iframe')
  8305. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8306. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8307. _iframe.contentWindow.document.body.appendChild(script1);
  8308. _iframe.contentWindow.document.body.appendChild(script2);
  8309. // _iframe.contentWindow.document.body.appendChild(script3);
  8310. _iframe.contentWindow.document.body.appendChild(script4);
  8311. })
  8312. if (onloadListener) {
  8313. _iframe.contentDocument.location.reload()
  8314. } else {
  8315. _iframe.contentDocument.location.reload()
  8316. }
  8317. } else if (str == 'courseDesign') {
  8318. U.UF.DL.iframeLoad(_iframe, function () {
  8319. // _iframe.contentWindow.U.MD.O.W.load();
  8320. // _iframe.contentWindow.document.body.appendChild(script1);
  8321. _iframe.contentWindow.document.body.appendChild(script2);
  8322. _iframe.contentWindow.document.body.appendChild(script4);
  8323. })
  8324. } else if (str == 'mind') {
  8325. _iframe = _formdiv.querySelector('iframe')
  8326. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8327. //
  8328. _iframe.contentWindow.document.body.appendChild(script1);
  8329. _iframe.contentWindow.document.body.appendChild(script2);
  8330. _iframe.contentWindow.document.body.appendChild(script4);
  8331. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8332. })
  8333. if (onloadListener) {
  8334. _iframe.contentDocument.location.reload()
  8335. } else {
  8336. _iframe.contentDocument.location.reload()
  8337. }
  8338. } else if (str == 'whiteboard') {
  8339. _iframe = _formdiv.querySelector('iframe')
  8340. let onloadListener = _iframe.onload = () => {
  8341. _iframe.contentWindow.document.body.appendChild(script1);
  8342. _iframe.contentWindow.document.body.appendChild(script2);
  8343. _iframe.contentWindow.document.body.appendChild(script4);
  8344. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8345. };
  8346. // if (onloadListener) {
  8347. // try {
  8348. // _iframe.src += "?cocorobo="+new Date().getTime()
  8349. // _iframe.contentWindow.document.location.reload()
  8350. // } catch (error) {
  8351. // }
  8352. // } else {
  8353. // _iframe.contentDocument.location.reload()
  8354. // }
  8355. } else {
  8356. _iframe.onload = () => {
  8357. _iframe.contentWindow.document.body.appendChild(script1);
  8358. _iframe.contentWindow.document.body.appendChild(script2);
  8359. // _iframe.contentWindow.document.body.appendChild(script3);
  8360. _iframe.contentWindow.document.body.appendChild(script4);
  8361. };
  8362. }
  8363. _jie.onclick = async () => {
  8364. let text = ''
  8365. if (aTool == 1) {
  8366. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8367. } else if (aTool == 6) {
  8368. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8369. } else if (aTool == 3) {
  8370. text = await U.MD.D.I.getEditorContent(_iframe);
  8371. }
  8372. _loading.style.display = 'flex'
  8373. console.log(_loading);
  8374. var _ajs = _iframe.contentWindow.document.createElement("script");
  8375. _ajs.type = "text/javascript";
  8376. _ajs.innerHTML =
  8377. // 'console.log(' + _loading + ');\n' +
  8378. 'var _js = document.createElement("script");\n' +
  8379. '_js.type="text/javascript";\n' +
  8380. '_js.charset="UTF-8";\n' +
  8381. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8382. "_js.onload = function(){\n" +
  8383. ' var a = document.getElementsByTagName("img")\n' +
  8384. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8385. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8386. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8387. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8388. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8389. "beforeUpload_shishi(file," +
  8390. "'" +
  8391. _userid +
  8392. "'" +
  8393. ", " +
  8394. "'" +
  8395. _cid +
  8396. "'" +
  8397. ", " +
  8398. "'" +
  8399. _stage +
  8400. "'" +
  8401. ", " +
  8402. "'" +
  8403. _task +
  8404. "'" +
  8405. ", " +
  8406. "'" +
  8407. _tool +
  8408. "'" +
  8409. ", " +
  8410. "'" +
  8411. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8412. "'" +
  8413. ", " +
  8414. "'" +
  8415. aTool +
  8416. "'" +
  8417. ", " +
  8418. "`" +
  8419. text +
  8420. "`" +
  8421. ")\n" +
  8422. " });\n" +
  8423. "}\n" +
  8424. "document.head.appendChild(_js);\n";
  8425. _iframe.contentWindow.document.head.appendChild(_ajs);
  8426. }
  8427. }
  8428. }
  8429. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8430. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8431. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8432. _userid = student.userid, //登录用户id
  8433. _username = student.student //用户名字
  8434. let _iframe;
  8435. let _cid = cid,
  8436. _stage = stage,
  8437. _task = task,
  8438. _tool = tool;
  8439. var _jie = $$("div", {
  8440. "style": {
  8441. "position": "absolute",
  8442. "bottom": "50px",
  8443. "right": "50px",
  8444. "zIndex": "9999",
  8445. "backgroundColor": "#2268bc",
  8446. "color": "#fff",
  8447. "padding": "12px 20px",
  8448. "cursor": "pointer",
  8449. "borderRadius": "4px",
  8450. },
  8451. "innerHTML": "提交作业"
  8452. })
  8453. let aTool = ''
  8454. let _loading = document.createElement('div')
  8455. _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;"
  8456. // _loading.id = "";
  8457. let _lchild = document.createElement('div')
  8458. let _limg = document.createElement('img')
  8459. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8460. _limg.style = "width: 26px;margin-right: 10px;"
  8461. _lchild.appendChild(_limg)
  8462. let _lspan = document.createElement('span')
  8463. _lspan.innerHTML = "上传中..."
  8464. _lchild.appendChild(_lspan)
  8465. _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%);"
  8466. _loading.appendChild(_lchild)
  8467. var _box = $$('div', {
  8468. "style": {
  8469. "position": "relative",
  8470. "width": "100%",
  8471. "height": "100%",
  8472. },
  8473. })
  8474. _box.appendChild(_loading)
  8475. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8476. switch (str) {
  8477. case "whiteboard":
  8478. aTool = 1;
  8479. _iframe = $$("iframe", {
  8480. "frameborder": "no",
  8481. "border": "0",
  8482. "scrolling ": "no",
  8483. "style": {
  8484. "cssText": "border:0;width:100%;height:100%"
  8485. },
  8486. "src": "https://beta.iwb.cocorobo.cn/"
  8487. })
  8488. _box.appendChild(_iframe);
  8489. _box.appendChild(_jie);
  8490. _formdiv = new U.UF.UI.form(
  8491. "电子白板-" + _username,
  8492. _box, {
  8493. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8494. "style": {
  8495. "width": "90%",
  8496. "height": "90%",
  8497. "overflow": 'hidden'
  8498. },
  8499. "onresize": function () { }
  8500. }, {
  8501. closecallback: function () { }
  8502. }, {
  8503. "style": {
  8504. "height": "36px"
  8505. }
  8506. }).form; //创建窗体
  8507. _taskbar = {
  8508. "id": str + _formdiv.id,
  8509. "style": {
  8510. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8511. },
  8512. "name": "电子白板",
  8513. "forms": _formdiv,
  8514. "click": function () {
  8515. U.MD.D.I.openApplication(str, obj, info);
  8516. }
  8517. }
  8518. break;
  8519. case "mind":
  8520. aTool = 3;
  8521. _iframe = $$("iframe", {
  8522. "frameborder": "no",
  8523. "border": "0",
  8524. "scrolling ": "no",
  8525. "style": {
  8526. "cssText": "border:0;width:100%;height:100%"
  8527. },
  8528. "src": "/kityminder-editor/dist/index.html"
  8529. })
  8530. _box.appendChild(_iframe);
  8531. _box.appendChild(_jie);
  8532. _formdiv = new U.UF.UI.form(
  8533. "思维导图-" + _username,
  8534. _box, { //"/jsmind/example/demo.html"
  8535. "id": "mind" + cid + stage + task + tool + _userid,
  8536. "style": {
  8537. "width": "90%",
  8538. "height": "90%",
  8539. "overflow": 'hidden'
  8540. },
  8541. "onresize": function () { }
  8542. }, {
  8543. closecallback: function () { }
  8544. }, {
  8545. "style": {
  8546. "height": "36px"
  8547. }
  8548. }).form; //创建窗体
  8549. _taskbar = {
  8550. "id": str + _formdiv.id,
  8551. "style": {
  8552. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8553. },
  8554. "name": "思维导图",
  8555. "forms": _formdiv,
  8556. "click": function () {
  8557. U.MD.D.I.openApplication(str, obj, info);
  8558. }
  8559. }
  8560. break;
  8561. case "MindMap":
  8562. aTool = 3;
  8563. _iframe = $$("iframe", {
  8564. "frameborder": "no",
  8565. "border": "0",
  8566. "scrolling ": "no",
  8567. "style": {
  8568. "cssText": "border:0;width:100%;height:100%"
  8569. },
  8570. "src": "//cloud.cocorobo.cn/mind/"
  8571. })
  8572. _box.appendChild(_iframe);
  8573. _box.appendChild(_jie);
  8574. _formdiv = new U.UF.UI.form(
  8575. "思维导图-" + _username,
  8576. _box, { //"/jsmind/example/demo.html"
  8577. "id": "mind" + cid + stage + task + tool + _userid,
  8578. "style": {
  8579. "width": "90%",
  8580. "height": "90%",
  8581. "overflow": 'hidden'
  8582. },
  8583. "onresize": function () { }
  8584. }, {
  8585. closecallback: function () { }
  8586. }, {
  8587. "style": {
  8588. "height": "36px"
  8589. }
  8590. }).form; //创建窗体
  8591. _taskbar = {
  8592. "id": str + _formdiv.id,
  8593. "style": {
  8594. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8595. },
  8596. "name": "思维导图",
  8597. "forms": _formdiv,
  8598. "click": function () {
  8599. U.MD.D.I.openApplication(str, obj, info);
  8600. }
  8601. }
  8602. break;
  8603. case "doc":
  8604. aTool = 6;
  8605. _iframe = $$("iframe", {
  8606. "frameborder": "no",
  8607. "border": "0",
  8608. "scrolling ": "no",
  8609. "style": {
  8610. "cssText": "border:0;width:100%;height:100%"
  8611. },
  8612. "src": "/Office/Word/WordEditArea.htm"
  8613. })
  8614. _box.appendChild(_iframe);
  8615. _box.appendChild(_jie);
  8616. _formdiv = new U.UF.UI.form(
  8617. "协同文档-" + _username,
  8618. _box, {
  8619. "id": "doc" + cid + stage + task + tool + _userid,
  8620. "style": {
  8621. "width": "90%",
  8622. "height": "90%",
  8623. "overflow": 'hidden'
  8624. },
  8625. "onresize": function () { }
  8626. }, {
  8627. closecallback: function () { }
  8628. }, {
  8629. "style": {
  8630. "height": "36px"
  8631. }
  8632. }).form; //创建窗体
  8633. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8634. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8635. })
  8636. _taskbar = {
  8637. "id": str + _formdiv.id,
  8638. "style": {
  8639. "backgroundImage": "url(/img/icon/doc.png)"
  8640. },
  8641. "name": "协同文档",
  8642. "forms": _formdiv,
  8643. "click": function () {
  8644. U.MD.D.I.openApplication(str, obj, info);
  8645. }
  8646. }
  8647. break;
  8648. case "mindNetwork": //好友打开
  8649. aTool = 7;
  8650. _iframe = $$("iframe", {
  8651. "webkitallowfullscreen": "",
  8652. "mozallowfullscreen": "",
  8653. "allowfullscreen": "",
  8654. "frameborder": "no",
  8655. "border": "0",
  8656. "scrolling ": "no",
  8657. "style": {
  8658. "cssText": "border:0; width:100%; height:100%;"
  8659. },
  8660. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8661. })
  8662. _box.appendChild(_iframe);
  8663. _box.appendChild(_jie);
  8664. _formdiv = new U.UF.UI.form(
  8665. "思维网格-" + _username,
  8666. _box, {
  8667. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8668. "style": {
  8669. "width": "90%",
  8670. "height": "90%",
  8671. "overflow": 'hidden'
  8672. },
  8673. "onresize": function () { }
  8674. }, {
  8675. closecallback: function () { }
  8676. }, {
  8677. "style": {
  8678. "height": "36px"
  8679. }
  8680. }).form; //创建窗体
  8681. _taskbar = {
  8682. "id": str + _formdiv.id,
  8683. "style": {
  8684. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8685. },
  8686. "name": "思维网格",
  8687. "forms": _formdiv,
  8688. "click": function () {
  8689. U.MD.D.I.openApplication(str, obj, info);
  8690. }
  8691. }
  8692. break;
  8693. case "courseDesign":
  8694. _iframe = $$("iframe", {
  8695. "webkitallowfullscreen": "",
  8696. "mozallowfullscreen": "",
  8697. "allowfullscreen": "",
  8698. "frameborder": "no",
  8699. "border": "0",
  8700. "scrolling ": "no",
  8701. "style": {
  8702. "cssText": "border:0; width:100%; height:100%;"
  8703. },
  8704. "src": "/course-design-vue"
  8705. })
  8706. _box.appendChild(_iframe);
  8707. _box.appendChild(_jie);
  8708. _formdiv = new U.UF.UI.form(
  8709. "项目设计-" + _username,
  8710. _box, {
  8711. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8712. "style": {
  8713. "width": "90%",
  8714. "height": "90%",
  8715. "overflow": 'hidden'
  8716. },
  8717. "onresize": function () { }
  8718. }, {
  8719. closecallback: function () { }
  8720. }, {
  8721. "style": {
  8722. "height": "36px"
  8723. }
  8724. }).form; //创建窗体
  8725. _taskbar = {
  8726. "id": str + _formdiv.id,
  8727. "style": {
  8728. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8729. },
  8730. "name": "项目设计",
  8731. "forms": _formdiv,
  8732. "click": function () {
  8733. U.MD.D.I.openApplication(str, obj, info);
  8734. }
  8735. }
  8736. break;
  8737. }
  8738. const script1 = document.createElement("script");
  8739. script1.type = "text/javascript";
  8740. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8741. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8742. const script2 = document.createElement("script");
  8743. script2.type = "text/javascript";
  8744. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8745. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8746. const script3 = document.createElement("script");
  8747. script3.type = "text/javascript";
  8748. script3.charset = "UTF-8";
  8749. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8750. const script4 = document.createElement("script");
  8751. script4.type = "text/javascript";
  8752. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8753. script4.src = window.origin + "/js/Common/jietu2E.js";
  8754. if (_iframe) {
  8755. if (str == 'doc') {
  8756. _iframe = _formdiv.querySelector('iframe')
  8757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8758. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8759. _iframe.contentWindow.document.body.appendChild(script1);
  8760. _iframe.contentWindow.document.body.appendChild(script2);
  8761. // _iframe.contentWindow.document.body.appendChild(script3);
  8762. _iframe.contentWindow.document.body.appendChild(script4);
  8763. })
  8764. if (onloadListener) {
  8765. _iframe.contentDocument.location.reload()
  8766. } else {
  8767. _iframe.contentDocument.location.reload()
  8768. }
  8769. } else if (str == 'courseDesign') {
  8770. U.UF.DL.iframeLoad(_iframe, function () {
  8771. // _iframe.contentWindow.U.MD.O.W.load();
  8772. // _iframe.contentWindow.document.body.appendChild(script1);
  8773. _iframe.contentWindow.document.body.appendChild(script2);
  8774. _iframe.contentWindow.document.body.appendChild(script4);
  8775. })
  8776. } else if (str == 'mind') {
  8777. _iframe = _formdiv.querySelector('iframe')
  8778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8779. //
  8780. _iframe.contentWindow.document.body.appendChild(script1);
  8781. _iframe.contentWindow.document.body.appendChild(script2);
  8782. _iframe.contentWindow.document.body.appendChild(script4);
  8783. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8784. })
  8785. if (onloadListener) {
  8786. _iframe.contentDocument.location.reload()
  8787. } else {
  8788. _iframe.contentDocument.location.reload()
  8789. }
  8790. } else if (str == 'whiteboard') {
  8791. _iframe = _formdiv.querySelector('iframe')
  8792. let onloadListener = _iframe.onload = () => {
  8793. _iframe.contentWindow.document.body.appendChild(script1);
  8794. _iframe.contentWindow.document.body.appendChild(script2);
  8795. _iframe.contentWindow.document.body.appendChild(script4);
  8796. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8797. };
  8798. // if (onloadListener) {
  8799. // try {
  8800. // _iframe.src += "?cocorobo="+new Date().getTime()
  8801. // _iframe.contentWindow.document.location.reload()
  8802. // } catch (error) {
  8803. // }
  8804. // } else {
  8805. // _iframe.contentDocument.location.reload()
  8806. // }
  8807. } else {
  8808. _iframe.onload = () => {
  8809. _iframe.contentWindow.document.body.appendChild(script1);
  8810. _iframe.contentWindow.document.body.appendChild(script2);
  8811. // _iframe.contentWindow.document.body.appendChild(script3);
  8812. _iframe.contentWindow.document.body.appendChild(script4);
  8813. };
  8814. }
  8815. _jie.onclick = async () => {
  8816. let text = ''
  8817. if (aTool == 1) {
  8818. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8819. } else if (aTool == 6) {
  8820. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8821. } else if (aTool == 3) {
  8822. text = await U.MD.D.I.getEditorContent(_iframe);
  8823. }
  8824. _loading.style.display = 'flex'
  8825. console.log(_loading);
  8826. var _ajs = _iframe.contentWindow.document.createElement("script");
  8827. _ajs.type = "text/javascript";
  8828. _ajs.innerHTML =
  8829. // 'console.log(' + _loading + ');\n' +
  8830. 'var _js = document.createElement("script");\n' +
  8831. '_js.type="text/javascript";\n' +
  8832. '_js.charset="UTF-8";\n' +
  8833. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8834. "_js.onload = function(){\n" +
  8835. ' var a = document.getElementsByTagName("img")\n' +
  8836. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8837. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8838. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8839. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8840. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8841. "beforeUpload_shishi(file," +
  8842. "'" +
  8843. _userid +
  8844. "'" +
  8845. ", " +
  8846. "'" +
  8847. _cid +
  8848. "'" +
  8849. ", " +
  8850. "'" +
  8851. _stage +
  8852. "'" +
  8853. ", " +
  8854. "'" +
  8855. _task +
  8856. "'" +
  8857. ", " +
  8858. "'" +
  8859. _tool +
  8860. "'" +
  8861. ", " +
  8862. "'" +
  8863. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8864. "'" +
  8865. ", " +
  8866. "'" +
  8867. aTool +
  8868. "'" +
  8869. ", " +
  8870. "`" +
  8871. text +
  8872. "`" +
  8873. ")\n" +
  8874. " });\n" +
  8875. "}\n" +
  8876. "document.head.appendChild(_js);\n";
  8877. _iframe.contentWindow.document.head.appendChild(_ajs);
  8878. }
  8879. }
  8880. }
  8881. U.MD.D.I.getEditorContent = function (iframe) {
  8882. return new Promise((resolve, reject) => {
  8883. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8884. console.log(content);
  8885. resolve(content)
  8886. });
  8887. });
  8888. }
  8889. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8890. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8891. // if (res.value[0].length > 0) {
  8892. // // resolve(res.value[0][0].text);
  8893. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8894. // $(fileInput).val('');
  8895. // });
  8896. // }
  8897. // }, [], { "type": "GET", "withCredentials": true });
  8898. var xmlhttp;
  8899. var Mac, Sn, DeviceId
  8900. if (window.XMLHttpRequest) {
  8901. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8902. xmlhttp = new XMLHttpRequest();
  8903. } else {
  8904. // IE6, IE5 浏览器执行代码
  8905. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8906. }
  8907. xmlhttp.onreadystatechange = function () {
  8908. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8909. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8910. // resolve(res.value[0][0].text);
  8911. if (type == '2') {
  8912. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8913. } else if (type == '3') {
  8914. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8915. }
  8916. } else {
  8917. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8918. }
  8919. }
  8920. }
  8921. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8922. xmlhttp.send();
  8923. }
  8924. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8925. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8926. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8927. _userinfo = US.userInfo, //登录用户信息
  8928. _userid = US.userInfo.userid //登录用户id
  8929. let _iframe;
  8930. let _cid = cid,
  8931. _stage = stage,
  8932. _task = task,
  8933. _tool = tool;
  8934. var _jie = $$("div", {
  8935. "style": {
  8936. "position": "absolute",
  8937. "bottom": "50px",
  8938. "right": "50px",
  8939. "zIndex": "9999",
  8940. "backgroundColor": "#2268bc",
  8941. "color": "#fff",
  8942. "padding": "12px 20px",
  8943. "cursor": "pointer",
  8944. "borderRadius": "4px",
  8945. },
  8946. "innerHTML": "确认并提交"
  8947. })
  8948. let aTool = ''
  8949. let _loading = document.createElement('div')
  8950. _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;"
  8951. // _loading.id = "";
  8952. let _lchild = document.createElement('div')
  8953. let _limg = document.createElement('img')
  8954. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8955. _limg.style = "width: 26px;margin-right: 10px;"
  8956. _lchild.appendChild(_limg)
  8957. let _lspan = document.createElement('span')
  8958. _lspan.innerHTML = "上传中..."
  8959. _lchild.appendChild(_lspan)
  8960. _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%);"
  8961. _loading.appendChild(_lchild)
  8962. var _box = $$('div', {
  8963. "style": {
  8964. "position": "relative",
  8965. "width": "100%",
  8966. "height": "100%",
  8967. },
  8968. })
  8969. _box.appendChild(_loading)
  8970. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8971. switch (str) {
  8972. case "whiteboard":
  8973. aTool = 1;
  8974. _iframe = $$("iframe", {
  8975. "frameborder": "no",
  8976. "border": "0",
  8977. "scrolling ": "no",
  8978. "style": {
  8979. "cssText": "border:0;width:100%;height:100%"
  8980. },
  8981. "src": "https://beta.iwb.cocorobo.cn/"
  8982. })
  8983. _box.appendChild(_iframe);
  8984. _box.appendChild(_jie);
  8985. _formdiv = new U.UF.UI.form(
  8986. "电子白板",
  8987. _box, {
  8988. "id": "whiteboards" + cid + stage + task + tool,
  8989. "style": {
  8990. "width": "90%",
  8991. "height": "90%",
  8992. "overflow": 'hidden'
  8993. },
  8994. "onresize": function () { }
  8995. }, {
  8996. closecallback: function () { }
  8997. }, {
  8998. "style": {
  8999. "height": "36px"
  9000. }
  9001. }).form; //创建窗体
  9002. _taskbar = {
  9003. "id": str + _formdiv.id,
  9004. "style": {
  9005. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9006. },
  9007. "name": "电子白板",
  9008. "forms": _formdiv,
  9009. "click": function () {
  9010. U.MD.D.I.openApplication(str, obj, info);
  9011. }
  9012. }
  9013. break;
  9014. case "mind":
  9015. aTool = 3;
  9016. _iframe = $$("iframe", {
  9017. "frameborder": "no",
  9018. "border": "0",
  9019. "scrolling ": "no",
  9020. "style": {
  9021. "cssText": "border:0;width:100%;height:100%"
  9022. },
  9023. "src": "/kityminder-editor/dist/index.html"
  9024. });
  9025. _box.appendChild(_iframe);
  9026. _box.appendChild(_jie);
  9027. _formdiv = new U.UF.UI.form(
  9028. "思维导图",
  9029. _box, { //"/jsmind/example/demo.html"
  9030. "id": "minds" + cid + stage + task + tool,
  9031. "style": {
  9032. "width": "90%",
  9033. "height": "90%",
  9034. "overflow": 'hidden'
  9035. },
  9036. "onresize": function () { }
  9037. }, {
  9038. closecallback: function () { }
  9039. }, {
  9040. "style": {
  9041. "height": "36px"
  9042. }
  9043. }).form; //创建窗体
  9044. _taskbar = {
  9045. "id": str + _formdiv.id,
  9046. "style": {
  9047. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9048. },
  9049. "name": "思维导图",
  9050. "forms": _formdiv,
  9051. "click": function () {
  9052. U.MD.D.I.openApplication(str, obj, info);
  9053. }
  9054. }
  9055. break;
  9056. case "doc":
  9057. aTool = 6;
  9058. _iframe = $$("iframe", {
  9059. "frameborder": "no",
  9060. "border": "0",
  9061. "scrolling ": "no",
  9062. "style": {
  9063. "cssText": "border:0;width:100%;height:100%"
  9064. },
  9065. "src": "/Office/Word/WordEditArea.htm"
  9066. })
  9067. _box.appendChild(_iframe);
  9068. _box.appendChild(_jie);
  9069. _formdiv = new U.UF.UI.form(
  9070. "协同文档",
  9071. _box, {
  9072. "id": "docs" + cid + stage + task + tool,
  9073. "style": {
  9074. "width": "90%",
  9075. "height": "90%",
  9076. "overflow": 'hidden'
  9077. },
  9078. "onresize": function () { }
  9079. }, {
  9080. closecallback: function () { }
  9081. }, {
  9082. "style": {
  9083. "height": "36px"
  9084. }
  9085. }).form; //创建窗体
  9086. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9087. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9088. })
  9089. _taskbar = {
  9090. "id": str + _formdiv.id,
  9091. "style": {
  9092. "backgroundImage": "url(/img/icon/doc.png)"
  9093. },
  9094. "name": "协同文档",
  9095. "forms": _formdiv,
  9096. "click": function () {
  9097. U.MD.D.I.openApplication(str, obj, info);
  9098. }
  9099. }
  9100. break;
  9101. }
  9102. const script1 = document.createElement("script");
  9103. script1.type = "text/javascript";
  9104. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9105. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9106. const script2 = document.createElement("script");
  9107. script2.type = "text/javascript";
  9108. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9109. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9110. const script3 = document.createElement("script");
  9111. script3.type = "text/javascript";
  9112. script3.charset = "UTF-8";
  9113. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9114. const script4 = document.createElement("script");
  9115. script4.type = "text/javascript";
  9116. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9117. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9118. if (_iframe) {
  9119. if (str == 'doc') {
  9120. _iframe = _formdiv.querySelector('iframe')
  9121. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9122. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9123. _iframe.contentWindow.document.body.appendChild(script1);
  9124. _iframe.contentWindow.document.body.appendChild(script2);
  9125. // _iframe.contentWindow.document.body.appendChild(script3);
  9126. _iframe.contentWindow.document.body.appendChild(script4);
  9127. })
  9128. if (onloadListener) {
  9129. _iframe.contentDocument.location.reload()
  9130. } else {
  9131. _iframe.contentDocument.location.reload()
  9132. }
  9133. } else if (str == 'mind') {
  9134. _iframe = _formdiv.querySelector('iframe')
  9135. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9136. _iframe.contentWindow.document.body.appendChild(script1);
  9137. _iframe.contentWindow.document.body.appendChild(script2);
  9138. _iframe.contentWindow.document.body.appendChild(script4);
  9139. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9140. })
  9141. if (onloadListener) {
  9142. _iframe.contentDocument.location.reload()
  9143. } else {
  9144. _iframe.contentDocument.location.reload()
  9145. }
  9146. } else {
  9147. _iframe.onload = () => {
  9148. _iframe.contentWindow.document.body.appendChild(script1);
  9149. _iframe.contentWindow.document.body.appendChild(script2);
  9150. // _iframe.contentWindow.document.body.appendChild(script3);
  9151. _iframe.contentWindow.document.body.appendChild(script4);
  9152. };
  9153. }
  9154. _jie.onclick = async () => {
  9155. let text = ''
  9156. if (aTool == 6) {
  9157. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9158. } else if (aTool == 3) {
  9159. text = await U.MD.D.I.getEditorContent(_iframe);
  9160. }
  9161. _loading.style.display = 'flex'
  9162. console.log(_loading);
  9163. var _ajs = _iframe.contentWindow.document.createElement("script");
  9164. _ajs.type = "text/javascript";
  9165. _ajs.innerHTML =
  9166. // 'console.log(' + _loading + ');\n' +
  9167. 'var _js = document.createElement("script");\n' +
  9168. '_js.type="text/javascript";\n' +
  9169. '_js.charset="UTF-8";\n' +
  9170. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9171. "_js.onload = function(){\n" +
  9172. ' var a = document.getElementsByTagName("img")\n' +
  9173. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9174. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9175. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9176. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9177. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9178. "beforeUpload_shishi(file," +
  9179. "'" +
  9180. _userid +
  9181. "'" +
  9182. ", " +
  9183. "'" +
  9184. _cid +
  9185. "'" +
  9186. ", " +
  9187. "'" +
  9188. _stage +
  9189. "'" +
  9190. ", " +
  9191. "'" +
  9192. _task +
  9193. "'" +
  9194. ", " +
  9195. "'" +
  9196. _tool +
  9197. "'" +
  9198. ", " +
  9199. "'" +
  9200. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9201. "'" +
  9202. ", " +
  9203. "'" +
  9204. aTool +
  9205. "'" +
  9206. ", " +
  9207. "`" +
  9208. text +
  9209. "`" +
  9210. ")\n" +
  9211. " });\n" +
  9212. "}\n" +
  9213. "document.head.appendChild(_js);\n";
  9214. _iframe.contentWindow.document.head.appendChild(_ajs);
  9215. }
  9216. }
  9217. //U.MD.D.I.openClick(str);
  9218. //如果有任务栏信息
  9219. // if (_taskbar) {
  9220. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9221. // }
  9222. }
  9223. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9224. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9225. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9226. _userinfo = US.userInfo, //登录用户信息
  9227. _userid = US.userInfo.userid //登录用户id
  9228. let _iframe;
  9229. let _cid = cid,
  9230. _stage = stage,
  9231. _task = task,
  9232. _tool = tool;
  9233. var _jie = $$("div", {
  9234. "style": {
  9235. "position": "absolute",
  9236. "bottom": "50px",
  9237. "right": "50px",
  9238. "zIndex": "9999",
  9239. "backgroundColor": "#2268bc",
  9240. "color": "#fff",
  9241. "padding": "12px 20px",
  9242. "cursor": "pointer",
  9243. "borderRadius": "4px",
  9244. },
  9245. "innerHTML": "确认并提交"
  9246. })
  9247. let aTool = ''
  9248. let _loading = document.createElement('div')
  9249. _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;"
  9250. // _loading.id = "";
  9251. let _lchild = document.createElement('div')
  9252. let _limg = document.createElement('img')
  9253. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9254. _limg.style = "width: 26px;margin-right: 10px;"
  9255. _lchild.appendChild(_limg)
  9256. let _lspan = document.createElement('span')
  9257. _lspan.innerHTML = "上传中..."
  9258. _lchild.appendChild(_lspan)
  9259. _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%);"
  9260. _loading.appendChild(_lchild)
  9261. var _box = $$('div', {
  9262. "style": {
  9263. "position": "relative",
  9264. "width": "100%",
  9265. "height": "100%",
  9266. },
  9267. })
  9268. _box.appendChild(_loading)
  9269. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9270. switch (str) {
  9271. case "whiteboard":
  9272. aTool = 1;
  9273. _iframe = $$("iframe", {
  9274. "frameborder": "no",
  9275. "border": "0",
  9276. "scrolling ": "no",
  9277. "style": {
  9278. "cssText": "border:0;width:100%;height:100%"
  9279. },
  9280. "src": "https://beta.iwb.cocorobo.cn/"
  9281. })
  9282. _box.appendChild(_iframe);
  9283. _box.appendChild(_jie);
  9284. _formdiv = new U.UF.UI.form(
  9285. "电子白板",
  9286. _box, {
  9287. "id": "whiteboards" + cid + stage + task + tool,
  9288. "style": {
  9289. "width": "90%",
  9290. "height": "90%",
  9291. "overflow": 'hidden'
  9292. },
  9293. "onresize": function () { }
  9294. }, {
  9295. closecallback: function () { }
  9296. }, {
  9297. "style": {
  9298. "height": "36px"
  9299. }
  9300. }).form; //创建窗体
  9301. _taskbar = {
  9302. "id": str + _formdiv.id,
  9303. "style": {
  9304. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9305. },
  9306. "name": "电子白板",
  9307. "forms": _formdiv,
  9308. "click": function () {
  9309. U.MD.D.I.openApplication(str, obj, info);
  9310. }
  9311. }
  9312. break;
  9313. case "mind":
  9314. aTool = 3;
  9315. _iframe = $$("iframe", {
  9316. "frameborder": "no",
  9317. "border": "0",
  9318. "scrolling ": "no",
  9319. "style": {
  9320. "cssText": "border:0;width:100%;height:100%"
  9321. },
  9322. "src": "/kityminder-editor/dist/index.html"
  9323. });
  9324. _box.appendChild(_iframe);
  9325. _box.appendChild(_jie);
  9326. _formdiv = new U.UF.UI.form(
  9327. "思维导图",
  9328. _box, { //"/jsmind/example/demo.html"
  9329. "id": "minds" + cid + stage + task + tool,
  9330. "style": {
  9331. "width": "90%",
  9332. "height": "90%",
  9333. "overflow": 'hidden'
  9334. },
  9335. "onresize": function () { }
  9336. }, {
  9337. closecallback: function () { }
  9338. }, {
  9339. "style": {
  9340. "height": "36px"
  9341. }
  9342. }).form; //创建窗体
  9343. _taskbar = {
  9344. "id": str + _formdiv.id,
  9345. "style": {
  9346. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9347. },
  9348. "name": "思维导图",
  9349. "forms": _formdiv,
  9350. "click": function () {
  9351. U.MD.D.I.openApplication(str, obj, info);
  9352. }
  9353. }
  9354. break;
  9355. case "doc":
  9356. aTool = 6;
  9357. _iframe = $$("iframe", {
  9358. "frameborder": "no",
  9359. "border": "0",
  9360. "scrolling ": "no",
  9361. "style": {
  9362. "cssText": "border:0;width:100%;height:100%"
  9363. },
  9364. "src": "/Office/Word/WordEditArea.htm"
  9365. })
  9366. _box.appendChild(_iframe);
  9367. _box.appendChild(_jie);
  9368. _formdiv = new U.UF.UI.form(
  9369. "协同文档",
  9370. _box, {
  9371. "id": "docs" + cid + stage + task + tool,
  9372. "style": {
  9373. "width": "90%",
  9374. "height": "90%",
  9375. "overflow": 'hidden'
  9376. },
  9377. "onresize": function () { }
  9378. }, {
  9379. closecallback: function () { }
  9380. }, {
  9381. "style": {
  9382. "height": "36px"
  9383. }
  9384. }).form; //创建窗体
  9385. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9386. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9387. })
  9388. _taskbar = {
  9389. "id": str + _formdiv.id,
  9390. "style": {
  9391. "backgroundImage": "url(/img/icon/doc.png)"
  9392. },
  9393. "name": "协同文档",
  9394. "forms": _formdiv,
  9395. "click": function () {
  9396. U.MD.D.I.openApplication(str, obj, info);
  9397. }
  9398. }
  9399. break;
  9400. }
  9401. const script1 = document.createElement("script");
  9402. script1.type = "text/javascript";
  9403. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9404. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9405. const script2 = document.createElement("script");
  9406. script2.type = "text/javascript";
  9407. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9408. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9409. const script3 = document.createElement("script");
  9410. script3.type = "text/javascript";
  9411. script3.charset = "UTF-8";
  9412. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9413. const script4 = document.createElement("script");
  9414. script4.type = "text/javascript";
  9415. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9416. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9417. if (_iframe) {
  9418. if (str == 'doc') {
  9419. _iframe = _formdiv.querySelector('iframe')
  9420. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9421. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9422. _iframe.contentWindow.document.body.appendChild(script1);
  9423. _iframe.contentWindow.document.body.appendChild(script2);
  9424. // _iframe.contentWindow.document.body.appendChild(script3);
  9425. _iframe.contentWindow.document.body.appendChild(script4);
  9426. })
  9427. if (onloadListener) {
  9428. _iframe.contentDocument.location.reload()
  9429. } else {
  9430. _iframe.contentDocument.location.reload()
  9431. }
  9432. } else if (str == 'mind') {
  9433. _iframe = _formdiv.querySelector('iframe')
  9434. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9435. _iframe.contentWindow.document.body.appendChild(script1);
  9436. _iframe.contentWindow.document.body.appendChild(script2);
  9437. _iframe.contentWindow.document.body.appendChild(script4);
  9438. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9439. })
  9440. if (onloadListener) {
  9441. _iframe.contentDocument.location.reload()
  9442. } else {
  9443. _iframe.contentDocument.location.reload()
  9444. }
  9445. } else {
  9446. _iframe.onload = () => {
  9447. _iframe.contentWindow.document.body.appendChild(script1);
  9448. _iframe.contentWindow.document.body.appendChild(script2);
  9449. // _iframe.contentWindow.document.body.appendChild(script3);
  9450. _iframe.contentWindow.document.body.appendChild(script4);
  9451. };
  9452. }
  9453. _jie.onclick = async () => {
  9454. let text = ''
  9455. if (aTool == 6) {
  9456. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9457. } else if (aTool == 3) {
  9458. text = await U.MD.D.I.getEditorContent(_iframe);
  9459. }
  9460. _loading.style.display = 'flex'
  9461. console.log(_loading);
  9462. var _ajs = _iframe.contentWindow.document.createElement("script");
  9463. _ajs.type = "text/javascript";
  9464. _ajs.innerHTML =
  9465. // 'console.log(' + _loading + ');\n' +
  9466. 'var _js = document.createElement("script");\n' +
  9467. '_js.type="text/javascript";\n' +
  9468. '_js.charset="UTF-8";\n' +
  9469. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9470. "_js.onload = function(){\n" +
  9471. ' var a = document.getElementsByTagName("img")\n' +
  9472. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9473. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9474. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9475. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9476. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9477. "beforeUpload_shishi(file," +
  9478. "'" +
  9479. _userid +
  9480. "'" +
  9481. ", " +
  9482. "'" +
  9483. _cid +
  9484. "'" +
  9485. ", " +
  9486. "'" +
  9487. _stage +
  9488. "'" +
  9489. ", " +
  9490. "'" +
  9491. _task +
  9492. "'" +
  9493. ", " +
  9494. "'" +
  9495. _tool +
  9496. "'" +
  9497. ", " +
  9498. "'" +
  9499. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9500. "'" +
  9501. ", " +
  9502. "'" +
  9503. aTool +
  9504. "'" +
  9505. ", " +
  9506. "`" +
  9507. text +
  9508. "`" +
  9509. ")\n" +
  9510. " });\n" +
  9511. "}\n" +
  9512. "document.head.appendChild(_js);\n";
  9513. _iframe.contentWindow.document.head.appendChild(_ajs);
  9514. }
  9515. }
  9516. //U.MD.D.I.openClick(str);
  9517. //如果有任务栏信息
  9518. // if (_taskbar) {
  9519. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9520. // }
  9521. }
  9522. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9523. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9524. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9525. _userinfo = US.userInfo, //登录用户信息
  9526. _userid = US.userInfo.userid //登录用户id
  9527. let _iframe;
  9528. let _cid = cid,
  9529. _stage = stage,
  9530. _task = task,
  9531. _tool = tool;
  9532. var _jie = $$("div", {
  9533. "style": {
  9534. "position": "absolute",
  9535. "bottom": "50px",
  9536. "right": "50px",
  9537. "zIndex": "9999",
  9538. "backgroundColor": "#2268bc",
  9539. "color": "#fff",
  9540. "padding": "12px 20px",
  9541. "cursor": "pointer",
  9542. "borderRadius": "4px",
  9543. },
  9544. "innerHTML": "上传模板"
  9545. })
  9546. let aTool = ''
  9547. let _loading = document.createElement('div')
  9548. _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;"
  9549. // _loading.id = "";
  9550. let _lchild = document.createElement('div')
  9551. let _limg = document.createElement('img')
  9552. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9553. _limg.style = "width: 26px;margin-right: 10px;"
  9554. _lchild.appendChild(_limg)
  9555. let _lspan = document.createElement('span')
  9556. _lspan.innerHTML = "上传中..."
  9557. _lchild.appendChild(_lspan)
  9558. _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%);"
  9559. _loading.appendChild(_lchild)
  9560. var _box = $$('div', {
  9561. "style": {
  9562. "position": "relative",
  9563. "width": "100%",
  9564. "height": "100%",
  9565. },
  9566. })
  9567. _box.appendChild(_loading)
  9568. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9569. switch (str) {
  9570. case "whiteboard":
  9571. aTool = 1;
  9572. _iframe = $$("iframe", {
  9573. "frameborder": "no",
  9574. "border": "0",
  9575. "scrolling ": "no",
  9576. "style": {
  9577. "cssText": "border:0;width:100%;height:100%"
  9578. },
  9579. "src": "https://beta.iwb.cocorobo.cn/"
  9580. })
  9581. _box.appendChild(_iframe);
  9582. _box.appendChild(_jie);
  9583. _formdiv = new U.UF.UI.form(
  9584. "电子白板",
  9585. _box, {
  9586. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9587. "style": {
  9588. "width": "90%",
  9589. "height": "90%",
  9590. "overflow": 'hidden'
  9591. },
  9592. "onresize": function () { }
  9593. }, {
  9594. closecallback: function () { }
  9595. }, {
  9596. "style": {
  9597. "height": "36px"
  9598. }
  9599. }).form; //创建窗体
  9600. _taskbar = {
  9601. "id": str + _formdiv.id,
  9602. "style": {
  9603. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9604. },
  9605. "name": "电子白板",
  9606. "forms": _formdiv,
  9607. "click": function () {
  9608. U.MD.D.I.openApplication(str, obj, info);
  9609. }
  9610. }
  9611. break;
  9612. case "mind":
  9613. aTool = 3;
  9614. _iframe = $$("iframe", {
  9615. "frameborder": "no",
  9616. "border": "0",
  9617. "scrolling ": "no",
  9618. "style": {
  9619. "cssText": "border:0;width:100%;height:100%"
  9620. },
  9621. "src": "/kityminder-editor/dist/index.html"
  9622. });
  9623. _box.appendChild(_iframe);
  9624. _box.appendChild(_jie);
  9625. _formdiv = new U.UF.UI.form(
  9626. "思维导图",
  9627. _box, { //"/jsmind/example/demo.html"
  9628. "id": "minds_Yu" + cid + stage + task + tool,
  9629. "style": {
  9630. "width": "90%",
  9631. "height": "90%",
  9632. "overflow": 'hidden'
  9633. },
  9634. "onresize": function () { }
  9635. }, {
  9636. closecallback: function () { }
  9637. }, {
  9638. "style": {
  9639. "height": "36px"
  9640. }
  9641. }).form; //创建窗体
  9642. _taskbar = {
  9643. "id": str + _formdiv.id,
  9644. "style": {
  9645. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9646. },
  9647. "name": "思维导图",
  9648. "forms": _formdiv,
  9649. "click": function () {
  9650. U.MD.D.I.openApplication(str, obj, info);
  9651. }
  9652. }
  9653. break;
  9654. case "doc":
  9655. aTool = 6;
  9656. _iframe = $$("iframe", {
  9657. "frameborder": "no",
  9658. "border": "0",
  9659. "scrolling ": "no",
  9660. "style": {
  9661. "cssText": "border:0;width:100%;height:100%"
  9662. },
  9663. "src": "/Office/Word/WordEditArea.htm"
  9664. })
  9665. _box.appendChild(_iframe);
  9666. _box.appendChild(_jie);
  9667. _formdiv = new U.UF.UI.form(
  9668. "协同文档",
  9669. _box, {
  9670. "id": "docs_Yu" + cid + stage + task + tool,
  9671. "style": {
  9672. "width": "90%",
  9673. "height": "90%",
  9674. "overflow": 'hidden'
  9675. },
  9676. "onresize": function () { }
  9677. }, {
  9678. closecallback: function () { }
  9679. }, {
  9680. "style": {
  9681. "height": "36px"
  9682. }
  9683. }).form; //创建窗体
  9684. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9685. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9686. })
  9687. _taskbar = {
  9688. "id": str + _formdiv.id,
  9689. "style": {
  9690. "backgroundImage": "url(/img/icon/doc.png)"
  9691. },
  9692. "name": "协同文档",
  9693. "forms": _formdiv,
  9694. "click": function () {
  9695. U.MD.D.I.openApplication(str, obj, info);
  9696. }
  9697. }
  9698. break;
  9699. case "CocoPi":
  9700. aTool = 57;
  9701. _iframe = $$("iframe", {
  9702. "allowpaymentrequest": "allowpaymentrequest",
  9703. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9704. "webkitallowfullscreen": "",
  9705. "mozallowfullscreen": "",
  9706. "frameborder": "no",
  9707. "border": "0",
  9708. "scrolling ": "no",
  9709. "style": {
  9710. "cssText": "border:0;width:100%;height:100%"
  9711. },
  9712. "src": "https://pi.cocorobo.cn/"
  9713. })
  9714. _box.appendChild(_iframe);
  9715. _box.appendChild(_jie);
  9716. _formdiv = new U.UF.UI.form(
  9717. "CocoPi",
  9718. _box, {
  9719. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9720. "style": {
  9721. "width": "90%",
  9722. "height": "90%",
  9723. "overflow": 'hidden'
  9724. },
  9725. "onresize": function () { }
  9726. }, {
  9727. closecallback: function () { }
  9728. }, {
  9729. "style": {
  9730. "height": "36px"
  9731. }
  9732. }).form; //创建窗体
  9733. _taskbar = {
  9734. "id": str + _formdiv.id,
  9735. "style": {
  9736. "backgroundImage": "url(/img/icon/cocopi.png)"
  9737. },
  9738. "name": "CocoPi",
  9739. "forms": _formdiv,
  9740. "click": function () {
  9741. U.MD.D.I.openApplication(str, obj, info);
  9742. }
  9743. }
  9744. break;
  9745. }
  9746. if (_iframe) {
  9747. if (str == 'doc') {
  9748. _iframe = _formdiv.querySelector('iframe')
  9749. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9750. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9751. })
  9752. if (onloadListener) {
  9753. _iframe.contentDocument.location.reload()
  9754. } else {
  9755. _iframe.contentDocument.location.reload()
  9756. }
  9757. } else if (str == 'mind') {
  9758. _iframe = _formdiv.querySelector('iframe')
  9759. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9760. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9761. })
  9762. if (onloadListener) {
  9763. _iframe.contentDocument.location.reload()
  9764. } else {
  9765. _iframe.contentDocument.location.reload()
  9766. }
  9767. } else if (str == 'whiteboard') {
  9768. _iframe = _formdiv.querySelector('iframe')
  9769. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9770. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9771. })
  9772. // if (onloadListener) {
  9773. // try {
  9774. // _iframe.src += "?cocorobo="+new Date().getTime()
  9775. // _iframe.contentWindow.document.location.reload()
  9776. // } catch (error) {
  9777. // }
  9778. // } else {
  9779. // _iframe.contentDocument.location.reload()
  9780. // }
  9781. } else if (str == 'CocoPi') {
  9782. _iframe = _formdiv.querySelector('iframe')
  9783. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9784. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9785. })
  9786. if (onloadListener) {
  9787. _iframe.contentDocument.location.reload()
  9788. } else {
  9789. _iframe.contentDocument.location.reload()
  9790. }
  9791. } else {
  9792. _iframe.onload = () => { };
  9793. }
  9794. _jie.onclick = async () => {
  9795. let text = ''
  9796. let type = '2'
  9797. if (aTool == 1) {
  9798. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9799. type = '3'
  9800. } else if (aTool == 6) {
  9801. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9802. type = '1'
  9803. } else if (aTool == 3) {
  9804. text = await U.MD.D.I.getEditorContent(_iframe);
  9805. type = '2'
  9806. } else if (aTool == 57) {
  9807. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9808. type = '4'
  9809. }
  9810. _loading.style.display = 'flex'
  9811. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9812. }
  9813. }
  9814. //U.MD.D.I.openClick(str);
  9815. //如果有任务栏信息
  9816. // if (_taskbar) {
  9817. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9818. // }
  9819. }
  9820. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9821. var xmlhttp;
  9822. var Mac, Sn, DeviceId
  9823. if (window.XMLHttpRequest) {
  9824. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9825. xmlhttp = new XMLHttpRequest();
  9826. } else {
  9827. // IE6, IE5 浏览器执行代码
  9828. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9829. }
  9830. xmlhttp.onreadystatechange = function () {
  9831. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9832. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9833. // resolve(res.value[0][0].text);
  9834. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9835. }
  9836. }
  9837. }
  9838. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9839. xmlhttp.send();
  9840. }
  9841. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9842. var xmlhttp;
  9843. var Mac, Sn, DeviceId
  9844. if (window.XMLHttpRequest) {
  9845. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9846. xmlhttp = new XMLHttpRequest();
  9847. } else {
  9848. // IE6, IE5 浏览器执行代码
  9849. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9850. }
  9851. xmlhttp.onreadystatechange = function () {
  9852. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9853. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9854. // resolve(res.value[0][0].text);
  9855. if (type == '2') {
  9856. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9857. } else if (type == '3') {
  9858. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9859. } else if (type == '4') {
  9860. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9861. }
  9862. } else {
  9863. if (type == '2') {
  9864. iframe.contentWindow.editor.minder.importData('json', '')
  9865. } else if (type == '3') {
  9866. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9867. } else if (type == '4') {
  9868. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9869. }
  9870. }
  9871. }
  9872. }
  9873. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9874. xmlhttp.send();
  9875. }
  9876. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9877. var xmlhttp;
  9878. var Mac, Sn, DeviceId
  9879. if (window.XMLHttpRequest) {
  9880. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9881. xmlhttp = new XMLHttpRequest();
  9882. } else {
  9883. // IE6, IE5 浏览器执行代码
  9884. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9885. }
  9886. xmlhttp.onreadystatechange = function () {
  9887. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9888. if (xmlhttp.response) {
  9889. // resolve(res.value[0][0].text);
  9890. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9891. // $(fileInput).val('');
  9892. // });
  9893. span.innerHTML = '上传成功'
  9894. setTimeout(() => {
  9895. loading.style.display = 'none'
  9896. }, 1000);
  9897. }
  9898. }
  9899. }
  9900. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9901. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9902. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9903. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9904. // 设置请求头,表示请求体的编码格式
  9905. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9906. // 设置请求体,使用url-encoded格式的数据
  9907. }
  9908. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9909. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9910. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9911. _userinfo = US.userInfo, //登录用户信息
  9912. _userid = US.userInfo.userid //登录用户id
  9913. let _iframe;
  9914. let _cid = cid,
  9915. _stage = stage,
  9916. _task = task,
  9917. _tool = tool;
  9918. var _jie = $$("div", {
  9919. "style": {
  9920. "position": "absolute",
  9921. "bottom": "50px",
  9922. "right": "50px",
  9923. "zIndex": "9999",
  9924. "backgroundColor": "#2268bc",
  9925. "color": "#fff",
  9926. "padding": "12px 20px",
  9927. "cursor": "pointer",
  9928. "borderRadius": "4px",
  9929. },
  9930. "innerHTML": "提交作业"
  9931. })
  9932. let aTool = ''
  9933. let _loading = document.createElement('div')
  9934. _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;"
  9935. // _loading.id = "";
  9936. let _lchild = document.createElement('div')
  9937. let _limg = document.createElement('img')
  9938. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9939. _limg.style = "width: 26px;margin-right: 10px;"
  9940. _lchild.appendChild(_limg)
  9941. let _lspan = document.createElement('span')
  9942. _lspan.innerHTML = "上传中..."
  9943. _lchild.appendChild(_lspan)
  9944. _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%);"
  9945. _loading.appendChild(_lchild)
  9946. var _box = $$('div', {
  9947. "style": {
  9948. "position": "relative",
  9949. "width": "100%",
  9950. "height": "100%",
  9951. },
  9952. })
  9953. _box.appendChild(_loading)
  9954. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9955. switch (str) {
  9956. case "CocoPi":
  9957. aTool = 57;
  9958. _iframe = $$("iframe", {
  9959. "allowpaymentrequest": "allowpaymentrequest",
  9960. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9961. "webkitallowfullscreen": "",
  9962. "mozallowfullscreen": "",
  9963. "frameborder": "no",
  9964. "border": "0",
  9965. "scrolling ": "no",
  9966. "style": {
  9967. "cssText": "border:0;width:100%;height:100%"
  9968. },
  9969. "src": "https://pi.cocorobo.cn/"
  9970. })
  9971. _box.appendChild(_iframe);
  9972. _box.appendChild(_jie);
  9973. _formdiv = new U.UF.UI.form(
  9974. "CocoPi",
  9975. _box, {
  9976. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9977. "style": {
  9978. "width": "90%",
  9979. "height": "90%",
  9980. "overflow": 'hidden'
  9981. },
  9982. "onresize": function () { }
  9983. }, {
  9984. closecallback: function () { }
  9985. }, {
  9986. "style": {
  9987. "height": "36px"
  9988. }
  9989. }).form; //创建窗体
  9990. _taskbar = {
  9991. "id": str + _formdiv.id,
  9992. "style": {
  9993. "backgroundImage": "url(/img/icon/cocopi.png)"
  9994. },
  9995. "name": "CocoPi",
  9996. "forms": _formdiv,
  9997. "click": function () {
  9998. U.MD.D.I.openApplication(str, obj, info);
  9999. }
  10000. }
  10001. break;
  10002. }
  10003. if (_iframe) {
  10004. if (str == 'CocoPi') {
  10005. _iframe = _formdiv.querySelector('iframe')
  10006. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10007. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10008. })
  10009. if (onloadListener) {
  10010. _iframe.contentDocument.location.reload()
  10011. } else {
  10012. _iframe.contentDocument.location.reload()
  10013. }
  10014. }
  10015. _jie.onclick = async () => {
  10016. let text = ''
  10017. if (aTool == 57) {
  10018. text = _iframe.contentWindow.getLoadXmlStr()
  10019. }
  10020. _loading.style.display = 'flex'
  10021. console.log(_loading);
  10022. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10023. _loading.style.display = 'none'
  10024. let _div = document.createElement('div')
  10025. _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;"
  10026. let _inner = document.createElement('div')
  10027. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10028. _inner.innerHTML = "上传成功"
  10029. _div.appendChild(_inner)
  10030. _iframe.contentWindow.window.document.body.appendChild(_div)
  10031. _div.onclick = () => {
  10032. _iframe.contentWindow.window.document.body.removeChild(_div)
  10033. }
  10034. setTimeout(() => {
  10035. _iframe.contentWindow.window.document.body.removeChild(_div)
  10036. }, 1000);
  10037. }, [], { "type": "POST", "withCredentials": true });
  10038. }
  10039. }
  10040. }
  10041. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10042. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10043. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10044. _userid = student.userid, //登录用户id
  10045. _username = student.student //用户名字
  10046. let _iframe;
  10047. let _cid = cid,
  10048. _stage = stage,
  10049. _task = task,
  10050. _tool = tool;
  10051. var _jie = $$("div", {
  10052. "style": {
  10053. "position": "absolute",
  10054. "bottom": "50px",
  10055. "right": "50px",
  10056. "zIndex": "9999",
  10057. "backgroundColor": "#2268bc",
  10058. "color": "#fff",
  10059. "padding": "12px 20px",
  10060. "cursor": "pointer",
  10061. "borderRadius": "4px",
  10062. },
  10063. "innerHTML": "提交作业"
  10064. })
  10065. let aTool = ''
  10066. let _loading = document.createElement('div')
  10067. _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;"
  10068. // _loading.id = "";
  10069. let _lchild = document.createElement('div')
  10070. let _limg = document.createElement('img')
  10071. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10072. _limg.style = "width: 26px;margin-right: 10px;"
  10073. _lchild.appendChild(_limg)
  10074. let _lspan = document.createElement('span')
  10075. _lspan.innerHTML = "上传中..."
  10076. _lchild.appendChild(_lspan)
  10077. _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%);"
  10078. _loading.appendChild(_lchild)
  10079. var _box = $$('div', {
  10080. "style": {
  10081. "position": "relative",
  10082. "width": "100%",
  10083. "height": "100%",
  10084. },
  10085. })
  10086. _box.appendChild(_loading)
  10087. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10088. switch (str) {
  10089. case "CocoPi":
  10090. aTool = 57;
  10091. _iframe = $$("iframe", {
  10092. "allowpaymentrequest": "allowpaymentrequest",
  10093. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10094. "webkitallowfullscreen": "",
  10095. "mozallowfullscreen": "",
  10096. "frameborder": "no",
  10097. "border": "0",
  10098. "scrolling ": "no",
  10099. "style": {
  10100. "cssText": "border:0;width:100%;height:100%"
  10101. },
  10102. "src": "https://pi.cocorobo.cn/"
  10103. })
  10104. _box.appendChild(_iframe);
  10105. _box.appendChild(_jie);
  10106. _formdiv = new U.UF.UI.form(
  10107. "CocoPi-" + _username,
  10108. _box, {
  10109. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10110. "style": {
  10111. "width": "90%",
  10112. "height": "90%",
  10113. "overflow": 'hidden'
  10114. },
  10115. "onresize": function () { }
  10116. }, {
  10117. closecallback: function () { }
  10118. }, {
  10119. "style": {
  10120. "height": "36px"
  10121. }
  10122. }).form; //创建窗体
  10123. _taskbar = {
  10124. "id": str + _formdiv.id,
  10125. "style": {
  10126. "backgroundImage": "url(/img/icon/cocopi.png)"
  10127. },
  10128. "name": "CocoPi",
  10129. "forms": _formdiv,
  10130. "click": function () {
  10131. U.MD.D.I.openApplication(str, obj, info);
  10132. }
  10133. }
  10134. break;
  10135. }
  10136. if (_iframe) {
  10137. if (str == 'CocoPi') {
  10138. _iframe = _formdiv.querySelector('iframe')
  10139. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10140. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10141. })
  10142. if (onloadListener) {
  10143. _iframe.contentDocument.location.reload()
  10144. } else {
  10145. _iframe.contentDocument.location.reload()
  10146. }
  10147. }
  10148. _jie.onclick = async () => {
  10149. let text = ''
  10150. if (aTool == 57) {
  10151. text = _iframe.contentWindow.getLoadXmlStr()
  10152. }
  10153. _loading.style.display = 'flex'
  10154. console.log(_loading);
  10155. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10156. _loading.style.display = 'none'
  10157. let _div = document.createElement('div')
  10158. _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;"
  10159. let _inner = document.createElement('div')
  10160. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10161. _inner.innerHTML = "上传成功"
  10162. _div.appendChild(_inner)
  10163. _iframe.contentWindow.window.document.body.appendChild(_div)
  10164. _div.onclick = () => {
  10165. _iframe.contentWindow.window.document.body.removeChild(_div)
  10166. }
  10167. setTimeout(() => {
  10168. _iframe.contentWindow.window.document.body.removeChild(_div)
  10169. }, 1000);
  10170. }, [], { "type": "POST", "withCredentials": true });
  10171. }
  10172. }
  10173. }
  10174. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10175. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10176. if (res.value[0].length > 0) {
  10177. if (atool == 57) {
  10178. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10179. }
  10180. } else {
  10181. if (atool == 57) {
  10182. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10183. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10184. }
  10185. }
  10186. }, [], { "type": "POST", "withCredentials": true });
  10187. }