DeskTop.js 651 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1520. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1525. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1526. ];
  1527. //010503
  1528. U.MD.D.I.x010503StudentDeskIcon = [
  1529. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1532. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1533. ];
  1534. //SPROUT Lab
  1535. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1536. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1537. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1538. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1539. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1540. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1543. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1545. ];
  1546. //SPROUT Lab
  1547. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. ];
  1552. //010204
  1553. U.MD.D.I.x010204TeacherDeskIcon = [
  1554. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1555. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1556. ];
  1557. //010204
  1558. U.MD.D.I.x010204StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //trail
  1565. U.MD.D.I.trailTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. ];
  1569. //trail
  1570. U.MD.D.I.trailStudentDeskIcon = [
  1571. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. ];
  1576. //010504
  1577. U.MD.D.I.x010504TeacherDeskIcon = [
  1578. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1579. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1581. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1585. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504StudentDeskIcon = [
  1589. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //SCNUET
  1595. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1601. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1602. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1603. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1604. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1605. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1606. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1607. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1608. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1609. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1610. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1611. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1613. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1614. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1615. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1616. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1617. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1618. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1619. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1620. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1621. ];
  1622. //SCNUET
  1623. U.MD.D.I.SCNUETAdminDeskIcon = [
  1624. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1625. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1628. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1629. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1630. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1631. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1632. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1633. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1634. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1635. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1636. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1637. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1638. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1641. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1642. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1643. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1644. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1645. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1646. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1647. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1648. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1649. ];
  1650. //SCNUET
  1651. U.MD.D.I.SCNUETStudentDeskIcon = [
  1652. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1653. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1655. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1656. ];
  1657. //x020201
  1658. U.MD.D.I.x020201TeacherDeskIcon = [
  1659. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1660. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1662. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1663. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1669. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1670. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1671. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1672. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1673. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1674. ];
  1675. //x020201
  1676. U.MD.D.I.x020201AdminDeskIcon = [
  1677. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1678. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. ];
  1694. //020201
  1695. U.MD.D.I.x020201StudentDeskIcon = [
  1696. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1698. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. ];
  1701. //010611
  1702. U.MD.D.I.x010611TeacherDeskIcon = [
  1703. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1704. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1710. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. ];
  1713. //010611
  1714. U.MD.D.I.x010611StudentDeskIcon = [
  1715. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //#region 桌面初始化a
  1721. /**
  1722. * 初始化桌面的起始函数
  1723. *
  1724. */
  1725. U.MD.D.I.init = function () {
  1726. if ($("#U_MD_D_K")[0]) {
  1727. //初始化桌面图标
  1728. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1729. // var clickUrl = ':12588/requestIp.php';
  1730. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1731. // U.MD.D.I.Ip = data;
  1732. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1733. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1734. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1735. // })
  1736. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1737. // })
  1738. }
  1739. }
  1740. /**
  1741. * 模式切换
  1742. *
  1743. */
  1744. U.MD.D.I.ModeCheck = function (type) {
  1745. if (US.Config.type == type) {
  1746. return
  1747. }
  1748. US.Config.type = type
  1749. $('.U_PBL_Check .active')[0].className = ''
  1750. if (type == 1) {
  1751. $('.U_PBL_Check div')[0].className = 'active'
  1752. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1753. } else {
  1754. $('.U_PBL_Check div')[1].className = 'active'
  1755. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1756. }
  1757. //初始化桌面图标
  1758. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1759. if (type == 2) {
  1760. U.MD.D.I.openApplication("project")
  1761. }
  1762. }
  1763. /**
  1764. * 隐藏任务栏
  1765. *
  1766. * @param {element} 桌面元素
  1767. */
  1768. U.MD.D.I.hiddenTaskbar = function (el) {
  1769. //任务栏位置变小
  1770. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1771. //桌面的位置变大
  1772. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1773. }
  1774. /**
  1775. * 隐藏任务栏
  1776. *
  1777. * @param {element} 桌面元素
  1778. */
  1779. U.MD.D.I.hiddenTaskbarout = function (el) {
  1780. //任务栏位置变小
  1781. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1782. //任务栏位置变化
  1783. U.selectEl(el).css({ "bottom": "-60px" });
  1784. //桌面的位置变大
  1785. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1786. }
  1787. }
  1788. /**
  1789. * 初始化打印桌面图标
  1790. *
  1791. * @param {element} 桌面元素
  1792. */
  1793. U.MD.D.I.initDesktopIcons = function (el, type) {
  1794. var i, //用于循环
  1795. _content, //桌面图标元素
  1796. _iconcontent, //桌面图标元素
  1797. _frag = $$("frag"), //定义一个碎片元素
  1798. _type = US.userInfo.type,
  1799. _org = US.userInfo.org,
  1800. _oid = US.userInfo.organizeid,
  1801. _role = US.userInfo.role,
  1802. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1803. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1804. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1805. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1806. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1807. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1808. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1809. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1810. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1811. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1812. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1813. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1814. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1815. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1816. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1817. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1818. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1819. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1820. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1821. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1822. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1823. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1824. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1825. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1826. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1827. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1828. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1829. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1830. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1831. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1832. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1833. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1834. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1835. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1836. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1837. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1838. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1839. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1840. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1841. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1842. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1843. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1844. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1845. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1846. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1847. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1848. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1849. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1850. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1851. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1852. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1853. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1854. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1855. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1856. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1857. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1858. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1859. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1860. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1861. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1862. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1863. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1864. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1865. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1866. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1867. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1868. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1869. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1870. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1871. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1872. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1873. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1874. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1875. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1876. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1877. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1878. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1879. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1880. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1881. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1882. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1883. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1884. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1885. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1886. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1887. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1888. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1889. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1890. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1891. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1892. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1893. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1894. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1895. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1896. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1897. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1898. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1899. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1900. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1901. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1902. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1903. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1904. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1905. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1906. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1907. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1908. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1909. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1910. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1911. 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'];
  1912. 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'];
  1913. //清楚桌面图标
  1914. el.innerHTML = "";
  1915. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1916. _teacherDesktopIconInfo.push(
  1917. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1918. { "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)" } },
  1919. )
  1920. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1921. }
  1922. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1923. _teacherDesktopIconInfo.push(
  1924. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1925. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1926. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1927. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1928. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1929. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1930. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1931. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1932. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1933. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1934. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1936. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1937. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1938. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1939. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1940. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1941. )
  1942. }
  1943. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1944. _teacherDesktopIconInfo.push(
  1945. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1946. )
  1947. }
  1948. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1949. // _teacherDesktopIconInfo.push(
  1950. // )
  1951. // }
  1952. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1953. _teacherDesktopIconInfo.push(
  1954. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1955. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1956. )
  1957. }
  1958. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1959. _teacherDesktopIconInfo.push(
  1960. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1966. )
  1967. _studentDesktopIconInfo.push(
  1968. )
  1969. }
  1970. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1971. _teacherDesktopIconInfo.push(
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. )
  1974. _studentDesktopIconInfo.push(
  1975. )
  1976. }
  1977. //010606 组织
  1978. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  1979. _teacherDesktopIconInfo.push(
  1980. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1981. )
  1982. _studentDesktopIconInfo.push(
  1983. )
  1984. }
  1985. //麒麟二中 和 民新小学
  1986. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1987. _teacherDesktopIconInfo.push(
  1988. )
  1989. }
  1990. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1991. _teacherDesktopIconInfo.push(
  1992. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1993. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1994. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1995. )
  1996. }
  1997. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  1998. _hkTeacherDeskIconInfo.push(
  1999. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2000. )
  2001. }
  2002. //北师大附中(010601)
  2003. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2004. // _teacherDesktopIconInfo.push(
  2005. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2006. // )
  2007. // _studentDesktopIconInfo.push(
  2008. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2009. // )
  2010. // }
  2011. //樂善堂余近卿中學
  2012. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2013. _teacherDesktopIconInfo.push(
  2014. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2015. )
  2016. }
  2017. // Education Artificial Intelligence
  2018. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2019. _teacherDesktopIconInfo.push(
  2020. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2021. )
  2022. }
  2023. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2024. _teacherDesktopIconInfo.push(
  2025. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2026. )
  2027. }
  2028. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2029. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2030. _teacherDesktopIconInfo.push(
  2031. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2032. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2033. )
  2034. }
  2035. //麒麟二中
  2036. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2037. _studentDesktopIconInfo.push(
  2038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2040. )
  2041. }
  2042. //万科双语
  2043. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2044. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2045. if (el.Name == '项目管理') {
  2046. el.Name = 'PBL项目'
  2047. }
  2048. return el
  2049. })
  2050. _studentDesktopIconInfo3.push(
  2051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2052. )
  2053. }
  2054. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2055. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2056. return el.Name != '魔盒识字' && el.Name != '24点'
  2057. })
  2058. }
  2059. 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) {
  2060. _studentDesktopIconInfo.push(
  2061. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2062. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2063. )
  2064. }
  2065. //循环创建桌面图标
  2066. if (type == 1) {
  2067. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2068. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2069. _content = $$("div", {
  2070. className: "U_MD_D_KO",
  2071. "onmousedown": U.UF.C.closure(function (obj) {
  2072. //防止拖动图标即打开了桌面应用
  2073. U.MD.D.click(this, obj);
  2074. }, [_studentDesktopIconInfo[i]]),
  2075. "onclick": U.UF.C.closure(function (obj) {
  2076. //防止拖动图标即打开了桌面应用
  2077. U.MD.D.click(this, obj);
  2078. }, [_studentDesktopIconInfo[i]])
  2079. }, _frag); //
  2080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2083. }
  2084. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2085. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2086. _content = $$("div", {
  2087. className: "U_MD_D_KO",
  2088. "onmousedown": U.UF.C.closure(function (obj) {
  2089. //防止拖动图标即打开了桌面应用
  2090. U.MD.D.click(this, obj);
  2091. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2092. "onclick": U.UF.C.closure(function (obj) {
  2093. //防止拖动图标即打开了桌面应用
  2094. U.MD.D.click(this, obj);
  2095. }, [_hkZJLSStudentDeskIconInfo[i]])
  2096. }, _frag); //
  2097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2100. } //
  2101. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2102. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2103. _content = $$("div", {
  2104. className: "U_MD_D_KO",
  2105. "onmousedown": U.UF.C.closure(function (obj) {
  2106. //防止拖动图标即打开了桌面应用
  2107. U.MD.D.click(this, obj);
  2108. }, [_ytyStudentDeskIconInfo[i]]),
  2109. "onclick": U.UF.C.closure(function (obj) {
  2110. //防止拖动图标即打开了桌面应用
  2111. U.MD.D.click(this, obj);
  2112. }, [_ytyStudentDeskIconInfo[i]])
  2113. }, _frag); //
  2114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2117. } //
  2118. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2119. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2120. _content = $$("div", {
  2121. className: "U_MD_D_KO",
  2122. "onmousedown": U.UF.C.closure(function (obj) {
  2123. //防止拖动图标即打开了桌面应用
  2124. U.MD.D.click(this, obj);
  2125. }, [_jccssylStudentDeskIconInfo[i]]),
  2126. "onclick": U.UF.C.closure(function (obj) {
  2127. //防止拖动图标即打开了桌面应用
  2128. U.MD.D.click(this, obj);
  2129. }, [_jccssylStudentDeskIconInfo[i]])
  2130. }, _frag); //
  2131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2134. }
  2135. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2136. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2137. _content = $$("div", {
  2138. className: "U_MD_D_KO",
  2139. "onmousedown": U.UF.C.closure(function (obj) {
  2140. //防止拖动图标即打开了桌面应用
  2141. U.MD.D.click(this, obj);
  2142. }, [_scnuaiStudentDeskIconInfo[i]]),
  2143. "onclick": U.UF.C.closure(function (obj) {
  2144. //防止拖动图标即打开了桌面应用
  2145. U.MD.D.click(this, obj);
  2146. }, [_scnuaiStudentDeskIconInfo[i]])
  2147. }, _frag); //
  2148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2151. }
  2152. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2153. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2154. _content = $$("div", {
  2155. className: "U_MD_D_KO",
  2156. "onmousedown": U.UF.C.closure(function (obj) {
  2157. //防止拖动图标即打开了桌面应用
  2158. U.MD.D.click(this, obj);
  2159. }, [_caleStudentDeskIconInfo[i]]),
  2160. "onclick": U.UF.C.closure(function (obj) {
  2161. //防止拖动图标即打开了桌面应用
  2162. U.MD.D.click(this, obj);
  2163. }, [_caleStudentDeskIconInfo[i]])
  2164. }, _frag); //
  2165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2168. }
  2169. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2170. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2171. _content = $$("div", {
  2172. className: "U_MD_D_KO",
  2173. "onmousedown": U.UF.C.closure(function (obj) {
  2174. //防止拖动图标即打开了桌面应用
  2175. U.MD.D.click(this, obj);
  2176. }, [_thuioeStudentDeskIconInfo[i]]),
  2177. "onclick": U.UF.C.closure(function (obj) {
  2178. //防止拖动图标即打开了桌面应用
  2179. U.MD.D.click(this, obj);
  2180. }, [_thuioeStudentDeskIconInfo[i]])
  2181. }, _frag); //
  2182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2185. }
  2186. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2187. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2188. _content = $$("div", {
  2189. className: "U_MD_D_KO",
  2190. "onmousedown": U.UF.C.closure(function (obj) {
  2191. //防止拖动图标即打开了桌面应用
  2192. U.MD.D.click(this, obj);
  2193. }, [_tpcStudentDeskIconInfo[i]]),
  2194. "onclick": U.UF.C.closure(function (obj) {
  2195. //防止拖动图标即打开了桌面应用
  2196. U.MD.D.click(this, obj);
  2197. }, [_tpcStudentDeskIconInfo[i]])
  2198. }, _frag); //
  2199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2202. } //
  2203. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2204. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2205. _content = $$("div", {
  2206. className: "U_MD_D_KO",
  2207. "onmousedown": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_chjyjStudentDeskIconInfo[i]]),
  2211. "onclick": U.UF.C.closure(function (obj) {
  2212. //防止拖动图标即打开了桌面应用
  2213. U.MD.D.click(this, obj);
  2214. }, [_chjyjStudentDeskIconInfo[i]])
  2215. }, _frag); //
  2216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2219. }
  2220. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2221. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2222. _content = $$("div", {
  2223. className: "U_MD_D_KO",
  2224. "onmousedown": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_szjkyStudentDeskIconInfo[i]]),
  2228. "onclick": U.UF.C.closure(function (obj) {
  2229. //防止拖动图标即打开了桌面应用
  2230. U.MD.D.click(this, obj);
  2231. }, [_szjkyStudentDeskIconInfo[i]])
  2232. }, _frag); //
  2233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2236. }
  2237. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2238. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2239. _content = $$("div", {
  2240. className: "U_MD_D_KO",
  2241. "onmousedown": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_x020201StudentDeskIconInfo[i]]),
  2245. "onclick": U.UF.C.closure(function (obj) {
  2246. //防止拖动图标即打开了桌面应用
  2247. U.MD.D.click(this, obj);
  2248. }, [_x020201StudentDeskIconInfo[i]])
  2249. }, _frag); //
  2250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2253. }
  2254. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2255. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2256. _content = $$("div", {
  2257. className: "U_MD_D_KO",
  2258. "onmousedown": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_SCNUETStudentDeskIconInfo[i]]),
  2262. "onclick": U.UF.C.closure(function (obj) {
  2263. //防止拖动图标即打开了桌面应用
  2264. U.MD.D.click(this, obj);
  2265. }, [_SCNUETStudentDeskIconInfo[i]])
  2266. }, _frag); //
  2267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2270. }
  2271. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2272. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2273. _content = $$("div", {
  2274. className: "U_MD_D_KO",
  2275. "onmousedown": U.UF.C.closure(function (obj) {
  2276. //防止拖动图标即打开了桌面应用
  2277. U.MD.D.click(this, obj);
  2278. }, [_dseiStudentDeskIconInfo[i]]),
  2279. "onclick": U.UF.C.closure(function (obj) {
  2280. //防止拖动图标即打开了桌面应用
  2281. U.MD.D.click(this, obj);
  2282. }, [_dseiStudentDeskIconInfo[i]])
  2283. }, _frag); //
  2284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2287. }
  2288. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2289. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2306. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_nsfxStudentDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_nsfxStudentDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2321. }
  2322. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2323. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_stiaStudentDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_stiaStudentDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2338. }
  2339. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2340. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_szdjgStudentDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_szdjgStudentDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2357. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2358. _content = $$("div", {
  2359. className: "U_MD_D_KO",
  2360. "onmousedown": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_x010607StudentDeskIconInfo[i]]),
  2364. "onclick": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_x010607StudentDeskIconInfo[i]])
  2368. }, _frag); //
  2369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2372. }
  2373. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2374. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_xhlyStudentDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_xhlyStudentDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2391. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2408. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2409. _content = $$("div", {
  2410. className: "U_MD_D_KO",
  2411. "onmousedown": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_x010503StudentDeskIconInfo[i]]),
  2415. "onclick": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_x010503StudentDeskIconInfo[i]])
  2419. }, _frag); //
  2420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2423. }
  2424. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2425. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_x010504StudentDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_x010504StudentDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2442. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_x010204StudentDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_x010204StudentDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2459. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2460. _content = $$("div", {
  2461. className: "U_MD_D_KO",
  2462. "onmousedown": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_trailStudentDeskIconInfo[i]]),
  2466. "onclick": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_trailStudentDeskIconInfo[i]])
  2470. }, _frag); //
  2471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2474. }
  2475. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2476. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2477. _content = $$("div", {
  2478. className: "U_MD_D_KO",
  2479. "onmousedown": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2483. "onclick": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2487. }, _frag); //
  2488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2491. }
  2492. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2493. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2494. _content = $$("div", {
  2495. className: "U_MD_D_KO",
  2496. "onmousedown": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_x010608StudentDeskIconInfo[i]]),
  2500. "onclick": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_x010608StudentDeskIconInfo[i]])
  2504. }, _frag); //
  2505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2508. }
  2509. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2510. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2511. _content = $$("div", {
  2512. className: "U_MD_D_KO",
  2513. "onmousedown": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_x010611StudentDeskIconInfo[i]]),
  2517. "onclick": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_x010611StudentDeskIconInfo[i]])
  2521. }, _frag); //
  2522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2525. }
  2526. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2527. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2528. _content = $$("div", {
  2529. className: "U_MD_D_KO",
  2530. "onmousedown": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_siesStudentDeskIconInfo[i]]),
  2534. "onclick": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_siesStudentDeskIconInfo[i]])
  2538. }, _frag); //
  2539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2542. }
  2543. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2544. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2545. _content = $$("div", {
  2546. className: "U_MD_D_KO",
  2547. "onmousedown": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_guzmsStudentDeskIconInfo[i]]),
  2551. "onclick": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_guzmsStudentDeskIconInfo[i]])
  2555. }, _frag); //
  2556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2559. }
  2560. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2561. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2562. _content = $$("div", {
  2563. className: "U_MD_D_KO",
  2564. "onmousedown": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_hkStudentDeskIconInfo[i]]),
  2568. "onclick": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_hkStudentDeskIconInfo[i]])
  2572. }, _frag); //
  2573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2576. }
  2577. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2578. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2579. _content = $$("div", {
  2580. className: "U_MD_D_KO",
  2581. "onmousedown": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_hkaceStudentDeskIconInfo[i]]),
  2585. "onclick": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_hkaceStudentDeskIconInfo[i]])
  2589. }, _frag); //
  2590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2593. }
  2594. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2595. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_BSDNSstudentDesktopIconInfo[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2610. }
  2611. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2612. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2613. _content = $$("div", {
  2614. className: "U_MD_D_KO",
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_cocobizStudentDeskIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_cocobizStudentDeskIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2627. }
  2628. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2629. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_xxzjkyStudentDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2644. }
  2645. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2646. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_studentDesktopIconInfo[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_studentDesktopIconInfo[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2661. }
  2662. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2663. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2664. _content = $$("div", {
  2665. className: "U_MD_D_KO",
  2666. "onmousedown": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_tcStudentDeskIconInfo[i]]),
  2670. "onclick": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_tcStudentDeskIconInfo[i]])
  2674. }, _frag); //
  2675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2678. }
  2679. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2680. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_szscStudentDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_szscStudentDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2697. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_studentDesktopIconInfo3[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_studentDesktopIconInfo3[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2712. }
  2713. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2714. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2715. _content = $$("div", {
  2716. className: "U_MD_D_KO",
  2717. "onmousedown": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_studentDesktopIconInfo2[i]]),
  2721. "onclick": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_studentDesktopIconInfo2[i]])
  2725. }, _frag); //
  2726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2729. }
  2730. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2731. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2732. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2733. continue
  2734. }
  2735. _content = $$("div", {
  2736. className: "U_MD_D_KO",
  2737. "onmousedown": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_wanketeacherDesktopIconInfo[i]]),
  2741. "onclick": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_wanketeacherDesktopIconInfo[i]])
  2745. }, _frag); //
  2746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2749. }
  2750. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2751. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2752. _content = $$("div", {
  2753. className: "U_MD_D_KO",
  2754. "onmousedown": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_wankeAdminDesktopIconInfo[i]]),
  2758. "onclick": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_wankeAdminDesktopIconInfo[i]])
  2762. }, _frag); //
  2763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2766. }
  2767. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2768. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2769. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2770. continue
  2771. }
  2772. _content = $$("div", {
  2773. className: "U_MD_D_KO",
  2774. "onmousedown": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2778. "onclick": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_scnuaiTeacherDeskIconInfo[i]])
  2782. }, _frag); //
  2783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2786. }
  2787. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2788. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2789. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2790. continue
  2791. }
  2792. _content = $$("div", {
  2793. className: "U_MD_D_KO",
  2794. "onmousedown": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2798. "onclick": U.UF.C.closure(function (obj) {
  2799. //防止拖动图标即打开了桌面应用
  2800. U.MD.D.click(this, obj);
  2801. }, [_BSDNSteacherDesktopIconInfo[i]])
  2802. }, _frag); //
  2803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2806. }
  2807. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2808. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2809. _content = $$("div", {
  2810. className: "U_MD_D_KO",
  2811. "onmousedown": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_scnuaiAdminDeskIconInfo[i]]),
  2815. "onclick": U.UF.C.closure(function (obj) {
  2816. //防止拖动图标即打开了桌面应用
  2817. U.MD.D.click(this, obj);
  2818. }, [_scnuaiAdminDeskIconInfo[i]])
  2819. }, _frag); //
  2820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2823. }
  2824. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2825. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2826. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2827. continue
  2828. }
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_jccssylTeacherDeskIconInfo[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_jccssylTeacherDeskIconInfo[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2843. }
  2844. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2845. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2846. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2847. continue
  2848. }
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_caleTeacherDeskIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_caleTeacherDeskIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2865. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_tpcOrganizerDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_tpcOrganizerDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2882. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2883. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2884. continue
  2885. }
  2886. _content = $$("div", {
  2887. className: "U_MD_D_KO",
  2888. "onmousedown": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_tpcTeacherDeskIconInfo[i]]),
  2892. "onclick": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_tpcTeacherDeskIconInfo[i]])
  2896. }, _frag); //
  2897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2900. }
  2901. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2902. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2903. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2904. continue
  2905. }
  2906. _content = $$("div", {
  2907. className: "U_MD_D_KO",
  2908. "onmousedown": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_teacherDesktopIconInfo2[i]]),
  2912. "onclick": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_teacherDesktopIconInfo2[i]])
  2916. }, _frag); //
  2917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2920. }
  2921. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2922. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2923. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2924. continue
  2925. }
  2926. _content = $$("div", {
  2927. className: "U_MD_D_KO",
  2928. "onmousedown": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_thuioeTeacherDeskIconInfo[i]]),
  2932. "onclick": U.UF.C.closure(function (obj) {
  2933. //防止拖动图标即打开了桌面应用
  2934. U.MD.D.click(this, obj);
  2935. }, [_thuioeTeacherDeskIconInfo[i]])
  2936. }, _frag); //
  2937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2940. }
  2941. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2942. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2943. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2944. continue
  2945. }
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_lotechTeacherDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_lotechTeacherDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2960. }//
  2961. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2962. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2963. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2964. continue
  2965. }
  2966. _content = $$("div", {
  2967. className: "U_MD_D_KO",
  2968. "onmousedown": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2972. "onclick": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2976. }, _frag); //
  2977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2980. }
  2981. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2982. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2983. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2984. continue
  2985. }
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_siesTeacherDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_siesTeacherDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3000. }
  3001. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3002. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3003. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3004. continue
  3005. }
  3006. _content = $$("div", {
  3007. className: "U_MD_D_KO",
  3008. "onmousedown": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_guzmsTeacherDeskIconInfo[i]]),
  3012. "onclick": U.UF.C.closure(function (obj) {
  3013. //防止拖动图标即打开了桌面应用
  3014. U.MD.D.click(this, obj);
  3015. }, [_guzmsTeacherDeskIconInfo[i]])
  3016. }, _frag); //
  3017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3020. }
  3021. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3022. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3023. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3024. continue
  3025. }
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_longhuaTeacherDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_longhuaTeacherDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3042. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3043. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3044. continue
  3045. }
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_ytyTeacherDeskIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_ytyTeacherDeskIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3062. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3063. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3064. continue
  3065. }
  3066. _content = $$("div", {
  3067. className: "U_MD_D_KO",
  3068. "onmousedown": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3072. "onclick": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_yunhaiTeacherDeskIconInfo[i]])
  3076. }, _frag); //
  3077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3080. } //_hkStudentDeskIconInfo
  3081. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3082. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3083. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3084. continue
  3085. }
  3086. _content = $$("div", {
  3087. className: "U_MD_D_KO",
  3088. "onmousedown": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3092. "onclick": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3096. }, _frag); //
  3097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3100. }
  3101. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3102. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3103. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3104. continue
  3105. }
  3106. _content = $$("div", {
  3107. className: "U_MD_D_KO",
  3108. "onmousedown": U.UF.C.closure(function (obj) {
  3109. //防止拖动图标即打开了桌面应用
  3110. U.MD.D.click(this, obj);
  3111. }, [_hkTeacherDeskIconInfo[i]]),
  3112. "onclick": U.UF.C.closure(function (obj) {
  3113. //防止拖动图标即打开了桌面应用
  3114. U.MD.D.click(this, obj);
  3115. }, [_hkTeacherDeskIconInfo[i]])
  3116. }, _frag); //
  3117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3120. }
  3121. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3122. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3123. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3124. continue
  3125. }
  3126. _content = $$("div", {
  3127. className: "U_MD_D_KO",
  3128. "onmousedown": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_hkaceTeacherDeskIconInfo[i]]),
  3132. "onclick": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_hkaceTeacherDeskIconInfo[i]])
  3136. }, _frag); //
  3137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3140. }
  3141. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3142. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3143. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3144. continue
  3145. }
  3146. _content = $$("div", {
  3147. className: "U_MD_D_KO",
  3148. "onmousedown": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_cocobizTeacherDeskIconInfo[i]]),
  3152. "onclick": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_cocobizTeacherDeskIconInfo[i]])
  3156. }, _frag); //
  3157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3160. }
  3161. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3162. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3163. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3164. continue
  3165. }
  3166. _content = $$("div", {
  3167. className: "U_MD_D_KO",
  3168. "onmousedown": U.UF.C.closure(function (obj) {
  3169. //防止拖动图标即打开了桌面应用
  3170. U.MD.D.click(this, obj);
  3171. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3172. "onclick": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3176. }, _frag); //
  3177. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3178. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3179. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3180. }
  3181. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3182. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3183. _content = $$("div", {
  3184. className: "U_MD_D_KO",
  3185. "onmousedown": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_gdjgAdminDeskIconInfo[i]]),
  3189. "onclick": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_gdjgAdminDeskIconInfo[i]])
  3193. }, _frag); //
  3194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3197. }
  3198. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3199. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3200. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3201. continue
  3202. }
  3203. _content = $$("div", {
  3204. className: "U_MD_D_KO",
  3205. "onmousedown": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_gdjgTeacherDeskIconInfo[i]]),
  3209. "onclick": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_gdjgTeacherDeskIconInfo[i]])
  3213. }, _frag); //
  3214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3217. }
  3218. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3219. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3220. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3221. continue
  3222. }
  3223. _content = $$("div", {
  3224. className: "U_MD_D_KO",
  3225. "onmousedown": U.UF.C.closure(function (obj) {
  3226. //防止拖动图标即打开了桌面应用
  3227. U.MD.D.click(this, obj);
  3228. }, [_szherTeacherDeskIconInfo[i]]),
  3229. "onclick": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_szherTeacherDeskIconInfo[i]])
  3233. }, _frag); //
  3234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3237. }
  3238. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3239. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3240. _content = $$("div", {
  3241. className: "U_MD_D_KO",
  3242. "onmousedown": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_heyuannAdminDeskIconInfo[i]]),
  3246. "onclick": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_heyuannAdminDeskIconInfo[i]])
  3250. }, _frag); //
  3251. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3252. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3253. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3254. }
  3255. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3256. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3257. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3258. continue
  3259. }
  3260. _content = $$("div", {
  3261. className: "U_MD_D_KO",
  3262. "onmousedown": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_heyuanTeacherDeskIconInfo[i]]),
  3266. "onclick": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_heyuanTeacherDeskIconInfo[i]])
  3270. }, _frag); //
  3271. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3272. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3273. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3274. } //
  3275. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3276. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3277. _content = $$("div", {
  3278. className: "U_MD_D_KO",
  3279. "onmousedown": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_dseiAdminDeskIconInfo[i]]),
  3283. "onclick": U.UF.C.closure(function (obj) {
  3284. //防止拖动图标即打开了桌面应用
  3285. U.MD.D.click(this, obj);
  3286. }, [_dseiAdminDeskIconInfo[i]])
  3287. }, _frag); //
  3288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3291. }
  3292. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3293. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3294. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3295. continue
  3296. }
  3297. _content = $$("div", {
  3298. className: "U_MD_D_KO",
  3299. "onmousedown": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_dseiTeacherDeskIconInfo[i]]),
  3303. "onclick": U.UF.C.closure(function (obj) {
  3304. //防止拖动图标即打开了桌面应用
  3305. U.MD.D.click(this, obj);
  3306. }, [_dseiTeacherDeskIconInfo[i]])
  3307. }, _frag); //
  3308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3311. } //
  3312. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3313. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3314. _content = $$("div", {
  3315. className: "U_MD_D_KO",
  3316. "onmousedown": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_chjyjAdminDeskIconInfo[i]]),
  3320. "onclick": U.UF.C.closure(function (obj) {
  3321. //防止拖动图标即打开了桌面应用
  3322. U.MD.D.click(this, obj);
  3323. }, [_chjyjAdminDeskIconInfo[i]])
  3324. }, _frag); //
  3325. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3326. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3327. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3328. }//
  3329. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3330. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3331. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3332. continue
  3333. }
  3334. _content = $$("div", {
  3335. className: "U_MD_D_KO",
  3336. "onmousedown": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_chjyjTeacherDeskIconInfo[i]]),
  3340. "onclick": U.UF.C.closure(function (obj) {
  3341. //防止拖动图标即打开了桌面应用
  3342. U.MD.D.click(this, obj);
  3343. }, [_chjyjTeacherDeskIconInfo[i]])
  3344. }, _frag); //
  3345. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3346. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3347. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3348. }
  3349. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3350. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3351. _content = $$("div", {
  3352. className: "U_MD_D_KO",
  3353. "onmousedown": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_szjkyAdminDeskIconInfo[i]]),
  3357. "onclick": U.UF.C.closure(function (obj) {
  3358. //防止拖动图标即打开了桌面应用
  3359. U.MD.D.click(this, obj);
  3360. }, [_szjkyAdminDeskIconInfo[i]])
  3361. }, _frag); //
  3362. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3363. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3364. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3365. }//
  3366. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3367. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3368. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3369. continue
  3370. }
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_szjkyTeacherDeskIconInfo[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_szjkyTeacherDeskIconInfo[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3385. }
  3386. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3387. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_x020201AdminDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_x020201AdminDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3402. }//
  3403. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3404. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3405. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_x020201TeacherDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_x020201TeacherDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3424. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_SCNUETAdminDeskIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_SCNUETAdminDeskIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3439. }//
  3440. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3441. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3442. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3443. continue
  3444. }
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_SCNUETTeacherDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3459. }
  3460. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3461. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3462. _content = $$("div", {
  3463. className: "U_MD_D_KO",
  3464. "onmousedown": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_futianAdminDeskIconInfo[i]]),
  3468. "onclick": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_futianAdminDeskIconInfo[i]])
  3472. }, _frag); //
  3473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3476. }
  3477. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3478. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3479. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3480. continue
  3481. }
  3482. _content = $$("div", {
  3483. className: "U_MD_D_KO",
  3484. "onmousedown": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_futianTeacherDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_futianTeacherDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3496. }
  3497. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3498. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3499. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3500. continue
  3501. }
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_MingdeTeacherDeskIcon[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_MingdeTeacherDeskIcon[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3518. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3519. _content = $$("div", {
  3520. className: "U_MD_D_KO",
  3521. "onmousedown": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_lhsAdminDesktopIconInfo[i]]),
  3525. "onclick": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_lhsAdminDesktopIconInfo[i]])
  3529. }, _frag); //
  3530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3533. }
  3534. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3535. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3536. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3537. continue
  3538. }
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_lhsteacherDesktopIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_lhsteacherDesktopIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3555. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3556. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3557. continue
  3558. }
  3559. _content = $$("div", {
  3560. className: "U_MD_D_KO",
  3561. "onmousedown": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_zhoujiateacherDesktopIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3575. for (i = 0; i < _hanDeskIcon.length; i++) {
  3576. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3577. continue
  3578. }
  3579. _content = $$("div", {
  3580. className: "U_MD_D_KO",
  3581. "onmousedown": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_hanDeskIcon[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_hanDeskIcon[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3595. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3596. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3597. continue
  3598. }
  3599. _content = $$("div", {
  3600. className: "U_MD_D_KO",
  3601. "onmousedown": U.UF.C.closure(function (obj) {
  3602. //防止拖动图标即打开了桌面应用
  3603. U.MD.D.click(this, obj);
  3604. }, [_orgStemDeskIcon[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_orgStemDeskIcon[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3615. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3616. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3617. continue
  3618. }
  3619. _content = $$("div", {
  3620. className: "U_MD_D_KO",
  3621. "onmousedown": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_szulsDeskIcon[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_szulsDeskIcon[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3633. }
  3634. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3635. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3636. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3637. continue
  3638. }
  3639. _content = $$("div", {
  3640. className: "U_MD_D_KO",
  3641. "onmousedown": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_orgDesktopIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_orgDesktopIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3655. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3656. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3657. continue
  3658. }
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_schoolDesktopIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_schoolDesktopIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3675. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3676. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_GMteacherDesktopIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_GMteacherDesktopIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3695. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3696. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3697. continue
  3698. }
  3699. _content = $$("div", {
  3700. className: "U_MD_D_KO",
  3701. "onmousedown": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_SONGteacherDesktopIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_SONGteacherDesktopIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3715. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_GMstudentDesktopIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_GMstudentDesktopIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3732. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3733. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3734. continue
  3735. }
  3736. _content = $$("div", {
  3737. className: "U_MD_D_KO",
  3738. "onmousedown": U.UF.C.closure(function (obj) {
  3739. //防止拖动图标即打开了桌面应用
  3740. U.MD.D.click(this, obj);
  3741. }, [_tcTeacherDeskIconInfo[i]]),
  3742. "onclick": U.UF.C.closure(function (obj) {
  3743. //防止拖动图标即打开了桌面应用
  3744. U.MD.D.click(this, obj);
  3745. }, [_tcTeacherDeskIconInfo[i]])
  3746. }, _frag); //
  3747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3750. }
  3751. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3752. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3753. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3754. continue
  3755. }
  3756. _content = $$("div", {
  3757. className: "U_MD_D_KO",
  3758. "onmousedown": U.UF.C.closure(function (obj) {
  3759. //防止拖动图标即打开了桌面应用
  3760. U.MD.D.click(this, obj);
  3761. }, [_tcOrganizerDeskIconInfo[i]]),
  3762. "onclick": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_tcOrganizerDeskIconInfo[i]])
  3766. }, _frag); //
  3767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3770. }
  3771. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3772. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3773. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3774. continue
  3775. }
  3776. _content = $$("div", {
  3777. className: "U_MD_D_KO",
  3778. "onmousedown": U.UF.C.closure(function (obj) {
  3779. //防止拖动图标即打开了桌面应用
  3780. U.MD.D.click(this, obj);
  3781. }, [_szscTeacherDeskIconInfo[i]]),
  3782. "onclick": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_szscTeacherDeskIconInfo[i]])
  3786. }, _frag); //
  3787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3790. }
  3791. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3792. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3793. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3794. continue
  3795. }
  3796. _content = $$("div", {
  3797. className: "U_MD_D_KO",
  3798. "onmousedown": U.UF.C.closure(function (obj) {
  3799. //防止拖动图标即打开了桌面应用
  3800. U.MD.D.click(this, obj);
  3801. }, [_szscOrganizerDeskIconInfo[i]]),
  3802. "onclick": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_szscOrganizerDeskIconInfo[i]])
  3806. }, _frag); //
  3807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3810. }
  3811. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3812. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3813. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3814. continue
  3815. }
  3816. _content = $$("div", {
  3817. className: "U_MD_D_KO",
  3818. "onmousedown": U.UF.C.closure(function (obj) {
  3819. //防止拖动图标即打开了桌面应用
  3820. U.MD.D.click(this, obj);
  3821. }, [_nsfxTeacherDeskIconInfo[i]]),
  3822. "onclick": U.UF.C.closure(function (obj) {
  3823. //防止拖动图标即打开了桌面应用
  3824. U.MD.D.click(this, obj);
  3825. }, [_nsfxTeacherDeskIconInfo[i]])
  3826. }, _frag); //
  3827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3830. }
  3831. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3832. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3833. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3834. continue
  3835. }
  3836. _content = $$("div", {
  3837. className: "U_MD_D_KO",
  3838. "onmousedown": U.UF.C.closure(function (obj) {
  3839. //防止拖动图标即打开了桌面应用
  3840. U.MD.D.click(this, obj);
  3841. }, [_stiaTeacherDeskIconInfo[i]]),
  3842. "onclick": U.UF.C.closure(function (obj) {
  3843. //防止拖动图标即打开了桌面应用
  3844. U.MD.D.click(this, obj);
  3845. }, [_stiaTeacherDeskIconInfo[i]])
  3846. }, _frag); //
  3847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3850. }
  3851. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3852. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3853. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3854. continue
  3855. }
  3856. _content = $$("div", {
  3857. className: "U_MD_D_KO",
  3858. "onmousedown": U.UF.C.closure(function (obj) {
  3859. //防止拖动图标即打开了桌面应用
  3860. U.MD.D.click(this, obj);
  3861. }, [_szdjgTeacherDeskIconInfo[i]]),
  3862. "onclick": U.UF.C.closure(function (obj) {
  3863. //防止拖动图标即打开了桌面应用
  3864. U.MD.D.click(this, obj);
  3865. }, [_szdjgTeacherDeskIconInfo[i]])
  3866. }, _frag); //
  3867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3870. }
  3871. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3872. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3873. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3874. continue
  3875. }
  3876. _content = $$("div", {
  3877. className: "U_MD_D_KO",
  3878. "onmousedown": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_x010607TeacherDeskIconInfo[i]]),
  3882. "onclick": U.UF.C.closure(function (obj) {
  3883. //防止拖动图标即打开了桌面应用
  3884. U.MD.D.click(this, obj);
  3885. }, [_x010607TeacherDeskIconInfo[i]])
  3886. }, _frag); //
  3887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3890. }
  3891. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3892. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3893. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3894. continue
  3895. }
  3896. _content = $$("div", {
  3897. className: "U_MD_D_KO",
  3898. "onmousedown": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_xhlyTeacherDeskIconInfo[i]]),
  3902. "onclick": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_xhlyTeacherDeskIconInfo[i]])
  3906. }, _frag); //
  3907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3910. }
  3911. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3912. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3913. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3914. continue
  3915. }
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3932. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3933. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_x010503TeacherDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_x010503TeacherDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3952. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3953. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_x010504TeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_x010504TeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3972. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3973. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3974. continue
  3975. }
  3976. _content = $$("div", {
  3977. className: "U_MD_D_KO",
  3978. "onmousedown": U.UF.C.closure(function (obj) {
  3979. //防止拖动图标即打开了桌面应用
  3980. U.MD.D.click(this, obj);
  3981. }, [_x010204TeacherDeskIconInfo[i]]),
  3982. "onclick": U.UF.C.closure(function (obj) {
  3983. //防止拖动图标即打开了桌面应用
  3984. U.MD.D.click(this, obj);
  3985. }, [_x010204TeacherDeskIconInfo[i]])
  3986. }, _frag); //
  3987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3990. }
  3991. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3992. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3993. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3994. continue
  3995. }
  3996. _content = $$("div", {
  3997. className: "U_MD_D_KO",
  3998. "onmousedown": U.UF.C.closure(function (obj) {
  3999. //防止拖动图标即打开了桌面应用
  4000. U.MD.D.click(this, obj);
  4001. }, [_trailTeacherDeskIconInfo[i]]),
  4002. "onclick": U.UF.C.closure(function (obj) {
  4003. //防止拖动图标即打开了桌面应用
  4004. U.MD.D.click(this, obj);
  4005. }, [_trailTeacherDeskIconInfo[i]])
  4006. }, _frag); //
  4007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4010. }
  4011. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4012. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4013. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4014. continue
  4015. }
  4016. _content = $$("div", {
  4017. className: "U_MD_D_KO",
  4018. "onmousedown": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4022. "onclick": U.UF.C.closure(function (obj) {
  4023. //防止拖动图标即打开了桌面应用
  4024. U.MD.D.click(this, obj);
  4025. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4026. }, _frag); //
  4027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4030. }
  4031. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4032. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4033. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4034. continue
  4035. }
  4036. _content = $$("div", {
  4037. className: "U_MD_D_KO",
  4038. "onmousedown": U.UF.C.closure(function (obj) {
  4039. //防止拖动图标即打开了桌面应用
  4040. U.MD.D.click(this, obj);
  4041. }, [_x010608TeacherDeskIconInfo[i]]),
  4042. "onclick": U.UF.C.closure(function (obj) {
  4043. //防止拖动图标即打开了桌面应用
  4044. U.MD.D.click(this, obj);
  4045. }, [_x010608TeacherDeskIconInfo[i]])
  4046. }, _frag); //
  4047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4050. }
  4051. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4052. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4053. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4054. continue
  4055. }
  4056. _content = $$("div", {
  4057. className: "U_MD_D_KO",
  4058. "onmousedown": U.UF.C.closure(function (obj) {
  4059. //防止拖动图标即打开了桌面应用
  4060. U.MD.D.click(this, obj);
  4061. }, [_x010611TeacherDeskIconInfo[i]]),
  4062. "onclick": U.UF.C.closure(function (obj) {
  4063. //防止拖动图标即打开了桌面应用
  4064. U.MD.D.click(this, obj);
  4065. }, [_x010611TeacherDeskIconInfo[i]])
  4066. }, _frag); //
  4067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4070. }
  4071. } else {
  4072. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4073. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4074. continue
  4075. }
  4076. _content = $$("div", {
  4077. className: "U_MD_D_KO",
  4078. "onmousedown": U.UF.C.closure(function (obj) {
  4079. //防止拖动图标即打开了桌面应用
  4080. U.MD.D.click(this, obj);
  4081. }, [_teacherDesktopIconInfo[i]]),
  4082. "onclick": U.UF.C.closure(function (obj) {
  4083. //防止拖动图标即打开了桌面应用
  4084. U.MD.D.click(this, obj);
  4085. }, [_teacherDesktopIconInfo[i]])
  4086. }, _frag); //
  4087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4090. }
  4091. }
  4092. } else {
  4093. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4094. _content = $$("div", {
  4095. className: "U_MD_D_KO",
  4096. style: { 'width': '124px', 'height': '145px' },
  4097. "onmousedown": U.UF.C.closure(function (obj) {
  4098. //防止拖动图标即打开了桌面应用
  4099. U.MD.D.click(this, obj);
  4100. }, [_easyDesktopIconInfo[i]]),
  4101. "onclick": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_easyDesktopIconInfo[i]])
  4105. }, _frag); //
  4106. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4109. }
  4110. }
  4111. if (type == 1) {
  4112. //加载好后给图标定位
  4113. U.MD.D.iconPostion($(_frag).Child());
  4114. } else {
  4115. //加载好后给图标定位
  4116. U.MD.D.iconPostion2($(_frag).Child());
  4117. }
  4118. //把图标加载到页面
  4119. el.appendChild(_frag);
  4120. }
  4121. /**
  4122. * 显示任务栏
  4123. *
  4124. * @param {element} 桌面元素
  4125. */
  4126. U.MD.D.I.displayTaskbar = function (el) {
  4127. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4128. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4129. //任务栏位置变化
  4130. U.selectEl(el).css({ "bottom": "0px" });
  4131. //桌面位置变话
  4132. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4133. }
  4134. }
  4135. //#region 桌面图标拖动逻辑
  4136. /**
  4137. * 桌面排列图标
  4138. *
  4139. * @param {element} 桌面元素
  4140. * @param {object} 上下相距的距离
  4141. * @param {object} 左右相距的距离
  4142. * @return {object} 命名空间
  4143. */
  4144. U.MD.D.iconPostion = function (childs, top, left) {
  4145. var i; //用于循环处理
  4146. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4147. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4148. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4149. for (i = 0; i < childs.length; i++) {
  4150. //如果竖排top超过了范围处理
  4151. if (top + 95 > US.height - 10) {
  4152. //left超过了页面范围处理,则向上重叠打印处理
  4153. if ((left + 180) > US.width) {
  4154. top -= 110;
  4155. left -= 90;
  4156. }
  4157. //没有超过范围,那么left+90添加到下一个竖排打印
  4158. else {
  4159. left += 90;
  4160. top = 15;
  4161. };
  4162. }
  4163. //给图标的位置赋值
  4164. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4165. if (i < childs.length - 1) {
  4166. //页面图标每次向下加95
  4167. top += 95;
  4168. }
  4169. }
  4170. //返回最后调用的图标的位置
  4171. return [top, left];
  4172. }
  4173. /**
  4174. * 桌面排列图标
  4175. *
  4176. * @param {element} 桌面元素
  4177. * @param {object} 上下相距的距离
  4178. * @param {object} 左右相距的距离
  4179. * @return {object} 命名空间
  4180. */
  4181. U.MD.D.iconPostion2 = function (childs, top, left) {
  4182. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4183. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4184. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4185. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4186. for (i = 0; i < childs.length; i++) {
  4187. //如果竖排top超过了范围处理
  4188. if (left + 150 > US.width - 10) {
  4189. //left超过了页面范围处理,则向上重叠打印处理
  4190. if ((top + 180) > US.Height) {
  4191. top -= 150;
  4192. left -= 150;
  4193. }
  4194. //没有超过范围,那么left+90添加到下一个竖排打印
  4195. else {
  4196. top += 150;
  4197. left = ol;
  4198. };
  4199. }
  4200. //给图标的位置赋值
  4201. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4202. if (i < childs.length - 1) {
  4203. //页面图标每次向下加95
  4204. left += 150;
  4205. }
  4206. }
  4207. //返回最后调用的图标的位置
  4208. return [top, left];
  4209. }
  4210. /**
  4211. * 桌面点击事件逻辑
  4212. *
  4213. * @param {element} 桌面元素
  4214. * @param {object} 上下相距的距离
  4215. * @param {object} 左右相距的距离
  4216. * @return {object} 命名空间
  4217. */
  4218. U.MD.D.click = function (el, obj) {
  4219. var _buttonnumber = event.button; //点击的按钮的事件值
  4220. var _userinfo = US.userInfo;
  4221. U.UF.EV.stopBubble(); //阻止向上冒泡
  4222. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4223. if (_buttonnumber < 2) {
  4224. //如果是click事件的处理
  4225. if (event.type == "click") {
  4226. //如果元素在mousemove事件中没有移动则出发click事件
  4227. if (!U.MD.D.I.IsDrag) {
  4228. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4229. U.alert("请先登录您的账号!");
  4230. setTimeout(() => {
  4231. U.MD.U.L.login();
  4232. }, 2000);
  4233. } else {
  4234. //打开应用处理
  4235. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4236. }
  4237. }
  4238. }
  4239. //如果是mouse事件的处理
  4240. else {
  4241. if (US.Config.type == '1') {
  4242. //拖动处理,添加拖动和拖动结束事件
  4243. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4244. }
  4245. }
  4246. U.MD.D.I.IsDrag = false;
  4247. }
  4248. }
  4249. /**
  4250. * 拖动的处理
  4251. *
  4252. */
  4253. U.MD.D.iconMove = function () {
  4254. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4255. U.MD.D.I.IsDrag = true;
  4256. }
  4257. /**
  4258. * 拖动结束后,这里是定位处理,以网状的形式定位
  4259. *
  4260. * @param {element} 拖动的元素
  4261. * @return {object} 命名空间
  4262. */
  4263. U.MD.D.iconUp = function (el) {
  4264. var _top = 15,
  4265. _left = 20,
  4266. _margin,
  4267. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4268. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4269. if (_positioninfo["OT"] > 15) {
  4270. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4271. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4272. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4273. }
  4274. if (_positioninfo["OL"] > 20) {
  4275. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4276. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4277. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4278. }
  4279. //while循环判断么一个重叠的元素
  4280. do {
  4281. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4282. _top = _positioninfo[0] + 95; //得到定位后的top
  4283. _left = _positioninfo[1]; //得到定位后的left
  4284. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4285. }
  4286. /**
  4287. * 判断拖动后图标是否重叠
  4288. *
  4289. * @param {element} 拖动的元素
  4290. * @param {element} 桌面所有的元素
  4291. * @param {array} 拖动元素的位置
  4292. ----------[0] 上 top
  4293. ----------[1] 左 left
  4294. * @return {object} 命名空间
  4295. */
  4296. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4297. //循环所有的图标
  4298. for (var i = 0; i < childs.length; i++) {
  4299. //判断有没有和该图标诶子重叠的元素
  4300. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4301. return childs[i]; //如果有返回
  4302. }
  4303. }
  4304. }
  4305. //#endregion
  4306. //#endregion
  4307. //#region 桌面应用
  4308. /**
  4309. * 打开应用
  4310. *
  4311. * @param {string} 类型
  4312. -----------------Disk 网盘系统
  4313. -----------------PDisk 学习系统网盘
  4314. -----------------Poto 图片
  4315. -----------------Video 视频
  4316. -----------------Music 音乐
  4317. -----------------Word word
  4318. -----------------Excel excel
  4319. -----------------Txt 记事本
  4320. -----------------PB 学习系统
  4321. -----------------Blog 朋友圈系统
  4322. -----------------FTP ftp系统
  4323. -----------------Group 好友群
  4324. -----------------SY 首页系统
  4325. -----------------Set 个人设置
  4326. -----------------XSet 系统设置
  4327. -----------------App 我们所有的app
  4328. -----------------BC c.1473.cn 平台
  4329. -----------------CWeb d.1473.cn 变成平台
  4330. -----------------其他的外联系统 我们统一用iframe打开
  4331. * @param {array} 类型
  4332. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4333. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4334. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4335. 如果第一个参数为其他,则无第二个参数
  4336. * @returns {array}
  4337. */
  4338. window.addEventListener('message', function (e) { // 监听 message 事件
  4339. // alert(e.data.type);
  4340. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4341. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4342. //3是展示全部阶段 2学生 1老师 4专家
  4343. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4344. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4345. //3是展示全部阶段 2学生 1老师 4专家
  4346. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4347. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4348. //3是展示全部阶段 2学生 1老师 4专家
  4349. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4350. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4351. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4352. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4353. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4354. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4355. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4356. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4357. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4358. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4359. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4360. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4361. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4362. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4363. //3是展示全部阶段 2学生 1老师 4专家
  4364. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4365. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4366. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4367. U.MD.D.I.selectUser();
  4368. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4369. var _formel = document.getElementById("study");
  4370. U.UF.F.windowZooming(_formel);
  4371. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4372. var _formel = document.getElementById("studyDetail");
  4373. U.UF.F.windowZooming(_formel);
  4374. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4375. var _formel = document.getElementById("studyDetail");
  4376. U.UF.F.windowZooming(_formel);
  4377. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4378. var _formel = document.getElementById("studentStudy");
  4379. U.UF.F.windowZooming(_formel);
  4380. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4381. // var _formel = document.getElementById("study");
  4382. //如果最大化了,那么就把他缩小
  4383. // if (_formel.ismaximize) {
  4384. // return;
  4385. // }
  4386. // U.UF.F.windowZooming(_formel);
  4387. // U.UF.F.topWindow(_formel);
  4388. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4389. // var _formel = document.getElementById("studyDetail");
  4390. //如果最大化了,那么就把他缩小
  4391. // if (_formel.ismaximize) {
  4392. // return;
  4393. // }
  4394. // U.UF.F.windowZooming(_formel);
  4395. // U.UF.F.topWindow(_formel);
  4396. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4397. // var _formel = document.getElementById("studentStudy");
  4398. // if (_formel.ismaximize) {
  4399. // return;
  4400. // }
  4401. // U.UF.F.windowZooming(_formel);
  4402. // U.UF.F.topWindow(_formel);
  4403. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4404. var _formel = document.getElementById("study");
  4405. // if (_formel.ismaximize) {
  4406. // return;
  4407. // }
  4408. // U.UF.F.windowZooming(_formel);
  4409. U.UF.F.topWindow(_formel);
  4410. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4411. var _formel = document.getElementById("studentIndex");
  4412. U.UF.F.windowZooming(_formel);
  4413. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4414. var _formel = document.getElementById("studyDetailS");
  4415. U.UF.F.windowZooming(_formel);
  4416. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4417. var _formel = document.getElementById("studioIndex");
  4418. U.UF.F.windowZooming(_formel);
  4419. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4420. var _formel = document.getElementById("studyDetailStudio");
  4421. U.UF.F.windowZooming(_formel);
  4422. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4423. var _formel = document.getElementById("studyDetailStudio");
  4424. U.UF.F.windowZooming(_formel);
  4425. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4426. var _formel = document.getElementById("studyDetailNT");
  4427. U.UF.F.windowZooming(_formel);
  4428. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4429. var _formel = document.getElementById("studyDetailS");
  4430. U.UF.F.windowZooming(_formel);
  4431. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4432. var _formel = document.getElementById("studyDetailS");
  4433. U.UF.F.topWindow(_formel);
  4434. } else if (e.data.tools && e.data.tools == "1") {
  4435. // U.MD.D.I.openApplication("whiteboard")
  4436. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4437. } else if (e.data.tools && e.data.tools == "2") {
  4438. U.MD.D.I.openApplication("note")
  4439. } else if (e.data.tools && e.data.tools == "3") {
  4440. // U.MD.D.I.openApplication("mind")
  4441. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4442. } else if (e.data.tools && e.data.tools == "4") {
  4443. U.MD.D.I.openApplication("investigation")
  4444. } else if (e.data.tools && e.data.tools == "6") {
  4445. // U.MD.D.I.openApplication("doc")
  4446. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4447. } else if (e.data.tools && e.data.tools == "7") {
  4448. // U.MD.D.I.openApplication("mindNetwork")
  4449. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4450. } else if (e.data.tools && e.data.tools == "8") {
  4451. U.MD.D.I.openApplication("library")
  4452. } else if (e.data.tools && e.data.tools == "17") {
  4453. U.MD.D.I.openApplication("stuLibrary")
  4454. } else if (e.data.tools && e.data.tools == "18") {
  4455. U.MD.D.I.openApplication("train")
  4456. } else if (e.data.tools && e.data.tools == "21") {
  4457. U.MD.D.I.openApplication("program")
  4458. } else if (e.data.tools && e.data.tools == "22") {
  4459. U.MD.D.I.openApplication("AIprogram2")
  4460. } else if (e.data.tools && e.data.tools == "23") {
  4461. U.MD.D.I.openApplication("Pythonprogram")
  4462. } else if (e.data.tools && e.data.tools == "24") {
  4463. U.MD.D.I.openApplication("AIprogram")
  4464. } else if (e.data.tools && e.data.tools == "25") {
  4465. U.MD.D.I.openApplication("sys")
  4466. } else if (e.data.tools && e.data.tools == "26") {
  4467. // U.MD.D.I.openApplication("courseDesign")
  4468. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4469. } else if (e.data.tools && e.data.tools == "31") {
  4470. U.MD.D.I.openApplication("netWorkPanel")
  4471. } else if (e.data.tools && e.data.tools == "32") {
  4472. U.MD.D.I.openApplication("codeEdit")
  4473. } else if (e.data.tools && e.data.tools == "57") {
  4474. U.MD.D.I.openApplication("CocoPi")
  4475. } else if (e.data.tools && e.data.tools == "63") {
  4476. U.MD.D.I.openApplication("Wood")
  4477. } else if (e.data.tools && e.data.tools == "58") {
  4478. U.MD.D.I.openApplication("car")
  4479. } else if (e.data.tools && e.data.tools == "59") {
  4480. U.MD.D.I.openApplication("lineSearch")
  4481. } else if (e.data.tools && e.data.tools == "60") {
  4482. U.MD.D.I.openApplication("deepLearning")
  4483. } else if (e.data.tools && e.data.tools == "61") {
  4484. U.MD.D.I.openApplication("allHistory")
  4485. } else if (e.data.tools && e.data.tools == "28") {
  4486. U.MD.D.I.openApplication("translation")
  4487. } else if (e.data.tools && e.data.tools == "37") {
  4488. U.MD.D.I.openApplication("mohe")
  4489. } else if (e.data.tools && e.data.tools == "38") {
  4490. U.MD.D.I.openApplication("24game")
  4491. } else if (e.data.tools && e.data.tools == "39") {
  4492. U.MD.D.I.openApplication("GeoGebra")
  4493. } else if (e.data.tools && e.data.tools == "43") {
  4494. U.MD.D.I.openApplication("studentEvaluate")
  4495. } else if (e.data.tools && e.data.tools == "44") {
  4496. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4497. } else if (e.data.tools && e.data.tools == "46") {
  4498. U.MD.D.I.openApplication("project")
  4499. } else if (e.data.tools && e.data.tools == "71") {
  4500. U.MD.D.I.openApplication("aigptCourse")
  4501. } else if (e.data.tools && e.data.tools == "1s") {
  4502. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4503. } else if (e.data.tools && e.data.tools == "3s") {
  4504. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4505. } else if (e.data.tools && e.data.tools == "6s") {
  4506. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4507. } else if (e.data.tools && e.data.tools == "1studio") {
  4508. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4509. } else if (e.data.tools && e.data.tools == "3studio") {
  4510. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4511. } else if (e.data.tools && e.data.tools == "6studio") {
  4512. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4513. } else if (e.data.tools && e.data.tools == "3y") {
  4514. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4515. } else if (e.data.tools && e.data.tools == "1y") {
  4516. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4518. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4519. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4520. U.MD.D.I.openApplication("AIAnalyse")
  4521. } else if (e.data.tools && e.data.tools == "1teacher") {
  4522. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4523. } else if (e.data.tools && e.data.tools == "3teacher") {
  4524. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4525. } else if (e.data.tools && e.data.tools == "7teacher") {
  4526. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4527. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4528. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4529. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4530. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4531. } else if (e.data.tools && e.data.tools == "1E") {
  4532. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4533. } else if (e.data.tools && e.data.tools == "3E") {
  4534. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4535. } else if (e.data.tools && e.data.tools == "57y") {
  4536. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4537. } else if (e.data.tools && e.data.tools == "57u") {
  4538. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4539. } else if (e.data.tools && e.data.tools == "57teacher") {
  4540. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4541. } else if (e.data.tools && e.data.tools == "64") {
  4542. U.MD.D.I.openApplication("AIChat")
  4543. } else if (e.data.tools && e.data.tools == "66") {
  4544. U.MD.D.I.openApplication("formulaEdi")
  4545. } else if (e.data.tools && e.data.tools == "67") {
  4546. U.MD.D.I.openApplication("molStr")
  4547. } else if (e.data.tools && e.data.tools == "68") {
  4548. U.MD.D.I.openApplication("timeAxis")
  4549. } else if (e.data.tools && e.data.tools == "openCourse") {
  4550. let _data = {
  4551. typea: e.data.typea || '',
  4552. typeb: e.data.typeb || '',
  4553. typed: e.data.typed || '',
  4554. }
  4555. U.MD.D.I.openInApplication("index", _data)
  4556. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4557. let _data = {
  4558. classid: e.data.classid || '',
  4559. }
  4560. U.MD.D.I.openInApplication("dataClass", _data)
  4561. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4562. let _data = {
  4563. cid: e.data.cid || '',
  4564. gid: e.data.gid || '',
  4565. }
  4566. U.MD.D.I.openInApplication("opencCscl", _data)
  4567. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4568. U.MD.D.I.openApplication("dataBoardTest")
  4569. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4570. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4571. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4572. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4573. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4574. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4575. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4576. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4577. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4578. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4579. }else if (e.data.tools && e.data.tools == "loginSz") {
  4580. U.MD.D.I.openInApplication("loginSz")
  4581. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4582. if($('#classroom_observation_board')[0]){
  4583. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4584. }
  4585. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4586. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4587. if($('#classroom_observation_ob_comment')[0]){
  4588. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4589. }
  4590. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4591. }
  4592. });
  4593. U.MD.D.I.selectUser = function () {
  4594. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4595. if (res.value[0].length > 0) {
  4596. US.userInfo = res.value[0][0];
  4597. $(".userName")[0].innerHTML = US.userInfo.username;
  4598. }
  4599. }, [], { "type": "GET", "withCredentials": true });
  4600. }
  4601. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4602. var _userinfo = US.userInfo, //登录用户信息
  4603. _userid = US.userInfo.userid, //登录用户id
  4604. _oid = _userinfo.organizeid,
  4605. _type = US.userInfo.type,
  4606. _org = US.userInfo.org,
  4607. _role = US.userInfo.role,
  4608. _classId = US.userInfo.classid;
  4609. if (_type == 4) {
  4610. tType = 4
  4611. }
  4612. switch (str) {
  4613. case "studyDetailNT": //无终端模式
  4614. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4615. setTimeout(() => {
  4616. U.MD.U.L.login();
  4617. }, 2000);
  4618. } else {
  4619. _formdiv = new U.UF.UI.form(
  4620. "课程详情",
  4621. $$("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 }), {
  4622. "id": "studyDetailNT",
  4623. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4624. "onresize": function () { }
  4625. }, {
  4626. closecallback: function () { }
  4627. }, { "style": { "height": "36px" } }).form; //创建窗体
  4628. _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); } }
  4629. break;
  4630. }
  4631. case "studyDetail":
  4632. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4633. setTimeout(() => {
  4634. U.MD.U.L.login();
  4635. }, 2000);
  4636. } else {
  4637. _formdiv = new U.UF.UI.form(
  4638. "课程详情",
  4639. $$("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 }), {
  4640. "id": "studyDetail",
  4641. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4642. "onresize": function () { }
  4643. }, {
  4644. closecallback: function () { }
  4645. }, { "style": { "height": "36px" } }).form; //创建窗体
  4646. _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); } }
  4647. break;
  4648. }
  4649. case "studyDetailTrain":
  4650. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4651. setTimeout(() => {
  4652. U.MD.U.L.login();
  4653. }, 2000);
  4654. } else {
  4655. _formdiv = new U.UF.UI.form(
  4656. "培训详情",
  4657. $$("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 }), {
  4658. "id": "studyDetailTrain",
  4659. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4660. "onresize": function () { }
  4661. }, {
  4662. closecallback: function () { }
  4663. }, { "style": { "height": "36px" } }).form; //创建窗体
  4664. _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); } }
  4665. break;
  4666. }
  4667. case "studyDetailS":
  4668. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4669. setTimeout(() => {
  4670. U.MD.U.L.login();
  4671. }, 2000);
  4672. } else {
  4673. _formdiv = new U.UF.UI.form(
  4674. "项目详情",
  4675. $$("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 }), {
  4676. "id": "studyDetailS",
  4677. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4678. "onresize": function () { }
  4679. }, {
  4680. closecallback: function () { }
  4681. }, { "style": { "height": "36px" } }).form; //创建窗体
  4682. _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); } }
  4683. break;
  4684. }
  4685. case "studyDetailStudio":
  4686. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4687. setTimeout(() => {
  4688. U.MD.U.L.login();
  4689. }, 2000);
  4690. } else {
  4691. _formdiv = new U.UF.UI.form(
  4692. "工作详情",
  4693. $$("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 }), {
  4694. "id": "studyDetailStudio",
  4695. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4696. "onresize": function () { }
  4697. }, {
  4698. closecallback: function () { }
  4699. }, { "style": { "height": "36px" } }).form; //创建窗体
  4700. _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); } }
  4701. break;
  4702. }
  4703. case "studyDetailS5":
  4704. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4705. setTimeout(() => {
  4706. U.MD.U.L.login();
  4707. }, 2000);
  4708. } else {
  4709. _formdiv = new U.UF.UI.form(
  4710. "项目详情",
  4711. $$("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 }), {
  4712. "id": "studyDetailS",
  4713. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4714. "onresize": function () { }
  4715. }, {
  4716. closecallback: function () { }
  4717. }, { "style": { "height": "36px" } }).form; //创建窗体
  4718. _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); } }
  4719. break;
  4720. }
  4721. case "studyDetailGM":
  4722. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4723. setTimeout(() => {
  4724. U.MD.U.L.login();
  4725. }, 2000);
  4726. } else {
  4727. _formdiv = new U.UF.UI.form(
  4728. "课程详情",
  4729. $$("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 }), {
  4730. "id": "studyDetail",
  4731. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4732. "onresize": function () { }
  4733. }, {
  4734. closecallback: function () { }
  4735. }, { "style": { "height": "36px" } }).form; //创建窗体
  4736. _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); } }
  4737. break;
  4738. }
  4739. case "hanUrl":
  4740. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4741. setTimeout(() => {
  4742. U.MD.U.L.login();
  4743. }, 2000);
  4744. } else {
  4745. _formdiv = new U.UF.UI.form(
  4746. "汉字宫",
  4747. $$("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" }), {
  4748. "id": "hanUrl",
  4749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4750. "onresize": function () { }
  4751. }, {
  4752. closecallback: function () { }
  4753. }, { "style": { "height": "36px" } }).form; //创建窗体
  4754. _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); } }
  4755. break;
  4756. }
  4757. case "index":
  4758. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4759. setTimeout(() => {
  4760. U.MD.U.L.login();
  4761. }, 2000);
  4762. } else {
  4763. _formdiv = new U.UF.UI.form(
  4764. "课程中心",
  4765. $$("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 }), {
  4766. "id": "study",
  4767. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4768. "onresize": function () { }
  4769. }, {
  4770. closecallback: function () { }
  4771. }, { "style": { "height": "36px" } }).form; //创建窗体
  4772. _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); } }
  4773. break;
  4774. }
  4775. case "dataClass":
  4776. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4777. setTimeout(() => {
  4778. U.MD.U.L.login();
  4779. }, 2000);
  4780. } else {
  4781. _formdiv = new U.UF.UI.form(
  4782. "数据报告",
  4783. $$("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 }), {
  4784. "id": "dataClass",
  4785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4786. "onresize": function () { }
  4787. }, {
  4788. closecallback: function () { }
  4789. }, { "style": { "height": "36px" } }).form; //创建窗体
  4790. _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); } }
  4791. break;
  4792. }
  4793. case "opencCscl":
  4794. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4795. setTimeout(() => {
  4796. U.MD.U.L.login();
  4797. }, 2000);
  4798. } else {
  4799. _formdiv = new U.UF.UI.form(
  4800. "协同建构",
  4801. $$("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 }), {
  4802. "id": "futureClass",
  4803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4804. "onresize": function () { }
  4805. }, {
  4806. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4807. }, { "style": { "height": "36px" } }).form; //创建窗体
  4808. _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); } }
  4809. break;
  4810. }
  4811. case "openCourseUpdate":
  4812. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4813. setTimeout(() => {
  4814. U.MD.U.L.login();
  4815. }, 2000);
  4816. } else {
  4817. _formdiv = new U.UF.UI.form(
  4818. "课程管理",
  4819. $$("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 }), {
  4820. "id": "openCourseUpdate",
  4821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4822. "onresize": function () { }
  4823. }, {
  4824. closecallback: function () { }
  4825. }, { "style": { "height": "36px" } }).form; //创建窗体
  4826. break;
  4827. }
  4828. case "openNewCourseUpdate":
  4829. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4830. setTimeout(() => {
  4831. U.MD.U.L.login();
  4832. }, 2000);
  4833. } else {
  4834. _formdiv = new U.UF.UI.form(
  4835. "课程管理",
  4836. $$("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 }), {
  4837. "id": "openCourseUpdate",
  4838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4839. "onresize": function () { }
  4840. }, {
  4841. closecallback: function () { }
  4842. }, { "style": { "height": "36px" } }).form; //创建窗体
  4843. break;
  4844. }
  4845. case "openCourseEUpdate":
  4846. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4847. setTimeout(() => {
  4848. U.MD.U.L.login();
  4849. }, 2000);
  4850. } else {
  4851. _formdiv = new U.UF.UI.form(
  4852. "课程管理",
  4853. $$("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 }), {
  4854. "id": "openCourseUpdate",
  4855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4856. "onresize": function () { }
  4857. }, {
  4858. closecallback: function () { }
  4859. }, { "style": { "height": "36px" } }).form; //创建窗体
  4860. break;
  4861. }
  4862. case "openCourseAiUpdate":
  4863. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4864. setTimeout(() => {
  4865. U.MD.U.L.login();
  4866. }, 2000);
  4867. } else {
  4868. _formdiv = new U.UF.UI.form(
  4869. "课程管理",
  4870. $$("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 }), {
  4871. "id": "openCourseUpdate",
  4872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4873. "onresize": function () { }
  4874. }, {
  4875. closecallback: function () { }
  4876. }, { "style": { "height": "36px" } }).form; //创建窗体
  4877. break;
  4878. }
  4879. case "openCourseNewUpdate":
  4880. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4881. setTimeout(() => {
  4882. U.MD.U.L.login();
  4883. }, 2000);
  4884. } else {
  4885. _formdiv = new U.UF.UI.form(
  4886. "课程管理",
  4887. $$("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 }), {
  4888. "id": "openCourseUpdate",
  4889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4890. "onresize": function () { }
  4891. }, {
  4892. closecallback: function () { }
  4893. }, { "style": { "height": "36px" } }).form; //创建窗体
  4894. break;
  4895. }
  4896. case "inviteLoginSz":
  4897. _formdiv = new U.UF.UI.form(
  4898. "随机码登录",
  4899. $$("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 }), {
  4900. "id": "loginSz",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. break;
  4907. case "loginSz":
  4908. _formdiv = new U.UF.UI.form(
  4909. "教师登录",
  4910. $$("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" }), {
  4911. "id": "loginSz",
  4912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4913. "onresize": function () { }
  4914. }, {
  4915. closecallback: function () { }
  4916. }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. break;
  4918. case "teacher":
  4919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4920. setTimeout(() => {
  4921. U.MD.U.L.login();
  4922. }, 2000);
  4923. } else {
  4924. _formdiv = new U.UF.UI.form(
  4925. "教师管理",
  4926. $$("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 }), {
  4927. "id": "teacher",
  4928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4929. "onresize": function () { }
  4930. }, {
  4931. closecallback: function () { }
  4932. }, { "style": { "height": "36px" } }).form; //创建窗体
  4933. break;
  4934. }
  4935. case "dataBoardSZArea":
  4936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4937. setTimeout(() => {
  4938. U.MD.U.L.login();
  4939. }, 2000);
  4940. } else {
  4941. _formdiv = new U.UF.UI.form(
  4942. "综合数据看板",
  4943. $$("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 }), {
  4944. "id": "dataBoardSZArea",
  4945. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4946. "onresize": function () { }
  4947. }, {
  4948. closecallback: function () { }
  4949. }, { "style": { "height": "36px" } }).form; //创建窗体
  4950. break;
  4951. }
  4952. case "dataBoardSZCity":
  4953. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4954. setTimeout(() => {
  4955. U.MD.U.L.login();
  4956. }, 2000);
  4957. } else {
  4958. _formdiv = new U.UF.UI.form(
  4959. "综合数据看板",
  4960. $$("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 }), {
  4961. "id": "dataBoardSZCity",
  4962. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4963. "onresize": function () { }
  4964. }, {
  4965. closecallback: function () { }
  4966. }, { "style": { "height": "36px" } }).form; //创建窗体
  4967. break;
  4968. }
  4969. case "classroom_observation_board":
  4970. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4971. setTimeout(() => {
  4972. U.MD.U.L.login();
  4973. }, 2000);
  4974. } else {
  4975. _formdiv = new U.UF.UI.form(
  4976. "课堂观察",
  4977. $$("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 }), {
  4978. "id": "classroom_observation_board",
  4979. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4980. "onresize": function () { }
  4981. }, {
  4982. closecallback: function () { }
  4983. }, { "style": { "height": "36px" } }).form; //创建窗体
  4984. break;
  4985. }
  4986. case "classroom_observation_ob_comment":
  4987. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4988. setTimeout(() => {
  4989. U.MD.U.L.login();
  4990. }, 2000);
  4991. } else {
  4992. _formdiv = new U.UF.UI.form(
  4993. "课堂审核",
  4994. $$("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 }), {
  4995. "id": "classroom_observation_ob_comment",
  4996. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4997. "onresize": function () { }
  4998. }, {
  4999. closecallback: function () { }
  5000. }, { "style": { "height": "36px" } }).form; //创建窗体
  5001. break;
  5002. }
  5003. }
  5004. }
  5005. U.MD.D.I.openApplication = function (str, obj, info) {
  5006. obj = obj || {};
  5007. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5008. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5009. _userinfo = US.userInfo, //登录用户信息
  5010. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5011. _oid = obj.organizeid || _userinfo.organizeid,
  5012. _type = US.userInfo.type,
  5013. _org = US.userInfo.org,
  5014. _role = US.userInfo.role,
  5015. _classId = US.userInfo.classid,
  5016. _TscreenType = 1
  5017. _screenType = 2,
  5018. _SscreenType = 3;
  5019. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5020. return;
  5021. }
  5022. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5023. switch (str) {
  5024. case "studnetProject": //好友打开
  5025. _formdiv = new U.UF.UI.form(
  5026. "我的项目",
  5027. $$("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 }), {
  5028. "id": "studnetProject",
  5029. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5030. "onresize": function () { }
  5031. }, {
  5032. closecallback: function () { }
  5033. }, { "style": { "height": "36px" } }).form; //创建窗体
  5034. _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); } }
  5035. break;
  5036. case "studentEvaluate": //好友打开
  5037. _formdiv = new U.UF.UI.form(
  5038. "我的评价",
  5039. $$("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 }), {
  5040. "id": "studentEvaluate",
  5041. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. _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); } }
  5047. break;
  5048. case "my":
  5049. _formdiv = new U.UF.UI.form(
  5050. "我的资料",
  5051. $$("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 }), {
  5052. "id": "my",
  5053. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. _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); } }
  5059. break;
  5060. case "program":
  5061. _formdiv = new U.UF.UI.form(
  5062. "编程平台",
  5063. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5064. "id": "program",
  5065. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5066. "onresize": function () { }
  5067. }, {
  5068. closecallback: function () { }
  5069. }, { "style": { "height": "36px" } }).form; //创建窗体
  5070. _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); } }
  5071. break;
  5072. case "library":
  5073. _formdiv = new U.UF.UI.form(
  5074. "素材库",
  5075. $$("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 }), {
  5076. "id": "library",
  5077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5078. "onresize": function () { }
  5079. }, {
  5080. closecallback: function () { }
  5081. }, { "style": { "height": "36px" } }).form; //创建窗体
  5082. _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); } }
  5083. break;
  5084. case "whiteboard":
  5085. _formdiv = new U.UF.UI.form(
  5086. "电子白板",
  5087. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5088. "id": "whiteboard",
  5089. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5090. "onresize": function () { }
  5091. }, {
  5092. closecallback: function () { }
  5093. }, { "style": { "height": "36px" } }).form; //创建窗体
  5094. _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); } }
  5095. break;
  5096. case "investigation":
  5097. _formdiv = new U.UF.UI.form(
  5098. "问卷调查",
  5099. $$("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 }), {
  5100. "id": "investigation",
  5101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. _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); } }
  5107. break;
  5108. case "note":
  5109. _formdiv = new U.UF.UI.form(
  5110. "便签分类",
  5111. $$("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 }), {
  5112. "id": "note",
  5113. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5114. "onresize": function () { }
  5115. }, {
  5116. closecallback: function () { }
  5117. }, { "style": { "height": "36px" } }).form; //创建窗体
  5118. _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); } }
  5119. break;
  5120. // case "score":
  5121. // _formdiv = new U.UF.UI.form(
  5122. // "量规评分",
  5123. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5124. // "id": "score",
  5125. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5126. // "onresize": function() {}
  5127. // }, {
  5128. // closecallback: function() {}
  5129. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5130. // _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); } }
  5131. // break;
  5132. case "mind":
  5133. _formdiv = new U.UF.UI.form(
  5134. "思维导图",
  5135. $$("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"
  5136. "id": "mind",
  5137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _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); } }
  5143. break;
  5144. case "doc":
  5145. // U.MD.D.I.isRoom();
  5146. _formdiv = new U.UF.UI.form(
  5147. "协同文档",
  5148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5149. "id": "doc",
  5150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5151. "onresize": function () { }
  5152. }, {
  5153. closecallback: function () { }
  5154. }, { "style": { "height": "36px" } }).form; //创建窗体
  5155. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5156. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5157. // })
  5158. _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); } }
  5159. break;
  5160. case "studentStudy":
  5161. _formdiv = new U.UF.UI.form(
  5162. "课程中心",
  5163. $$("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
  5164. "id": "studentStudy",
  5165. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5166. "onresize": function () { }
  5167. }, {
  5168. closecallback: function () { }
  5169. }, { "style": { "height": "36px" } }).form; //创建窗体
  5170. _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); } }
  5171. break;
  5172. case "train": //好友打开
  5173. _formdiv = new U.UF.UI.form(
  5174. "训练平台",
  5175. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5176. "id": "train",
  5177. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5178. "onresize": function () { }
  5179. }, {
  5180. closecallback: function () { }
  5181. }, { "style": { "height": "36px" } }).form; //创建窗体
  5182. _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); } }
  5183. break;
  5184. case "mindNetwork": //好友打开
  5185. _formdiv = new U.UF.UI.form(
  5186. "思维网格",
  5187. $$("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 }), {
  5188. "id": "mindNetwork",
  5189. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5190. "onresize": function () { }
  5191. }, {
  5192. closecallback: function () { }
  5193. }, { "style": { "height": "36px" } }).form; //创建窗体
  5194. _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); } }
  5195. break;
  5196. case "studentClassRoom": //好友打开
  5197. _formdiv = new U.UF.UI.form(
  5198. "实时课堂",
  5199. $$("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 }), {
  5200. "id": "studentClassRoom",
  5201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5202. "onresize": function () { }
  5203. }, {
  5204. closecallback: function () { }
  5205. }, { "style": { "height": "36px" } }).form; //创建窗体
  5206. _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); } }
  5207. setTimeout(() => {
  5208. U.UF.F.windowZooming(_formdiv)
  5209. }, 0);
  5210. break;
  5211. }
  5212. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5213. switch (str) {
  5214. case "studnetProject": //好友打开
  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": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5218. "id": "studnetProject",
  5219. "style": { "width": "70%", "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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5225. break;
  5226. case "studentEvaluate": //好友打开
  5227. _formdiv = new U.UF.UI.form(
  5228. "我的评价",
  5229. $$("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 }), {
  5230. "id": "studentEvaluate",
  5231. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5232. "onresize": function () { }
  5233. }, {
  5234. closecallback: function () { }
  5235. }, { "style": { "height": "36px" } }).form; //创建窗体
  5236. _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); } }
  5237. break;
  5238. case "my":
  5239. _formdiv = new U.UF.UI.form(
  5240. "我的资料",
  5241. $$("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 }), {
  5242. "id": "my",
  5243. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5244. "onresize": function () { }
  5245. }, {
  5246. closecallback: function () { }
  5247. }, { "style": { "height": "36px" } }).form; //创建窗体
  5248. _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); } }
  5249. break;
  5250. case "program":
  5251. _formdiv = new U.UF.UI.form(
  5252. "编程平台",
  5253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5254. "id": "program",
  5255. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5256. "onresize": function () { }
  5257. }, {
  5258. closecallback: function () { }
  5259. }, { "style": { "height": "36px" } }).form; //创建窗体
  5260. _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); } }
  5261. break;
  5262. case "library":
  5263. _formdiv = new U.UF.UI.form(
  5264. "素材库",
  5265. $$("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 }), {
  5266. "id": "library",
  5267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. case "whiteboard":
  5275. _formdiv = new U.UF.UI.form(
  5276. "电子白板",
  5277. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5278. "id": "whiteboard",
  5279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. case "investigation":
  5287. _formdiv = new U.UF.UI.form(
  5288. "问卷调查",
  5289. $$("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 }), {
  5290. "id": "investigation",
  5291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "note":
  5299. _formdiv = new U.UF.UI.form(
  5300. "便签分类",
  5301. $$("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 }), {
  5302. "id": "note",
  5303. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _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); } }
  5309. break;
  5310. // case "score":
  5311. // _formdiv = new U.UF.UI.form(
  5312. // "量规评分",
  5313. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5314. // "id": "score",
  5315. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5316. // "onresize": function() {}
  5317. // }, {
  5318. // closecallback: function() {}
  5319. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5320. // _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); } }
  5321. // break;
  5322. case "mind":
  5323. _formdiv = new U.UF.UI.form(
  5324. "思维导图",
  5325. $$("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"
  5326. "id": "mind",
  5327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. _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); } }
  5333. break;
  5334. case "doc":
  5335. // U.MD.D.I.isRoom();
  5336. _formdiv = new U.UF.UI.form(
  5337. "协同文档",
  5338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5339. "id": "doc",
  5340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5341. "onresize": function () { }
  5342. }, {
  5343. closecallback: function () { }
  5344. }, { "style": { "height": "36px" } }).form; //创建窗体
  5345. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5346. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5347. })
  5348. _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); } }
  5349. break;
  5350. case "train": //好友打开
  5351. _formdiv = new U.UF.UI.form(
  5352. "训练平台",
  5353. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5354. "id": "train",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //创建窗体
  5360. _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); } }
  5361. break;
  5362. case "studentStudy":
  5363. _formdiv = new U.UF.UI.form(
  5364. "课程中心",
  5365. $$("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
  5366. "id": "studentStudy",
  5367. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5368. "onresize": function () { }
  5369. }, {
  5370. closecallback: function () { }
  5371. }, { "style": { "height": "36px" } }).form; //创建窗体
  5372. _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); } }
  5373. break;
  5374. case "mindNetwork": //好友打开
  5375. _formdiv = new U.UF.UI.form(
  5376. "思维网格",
  5377. $$("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 }), {
  5378. "id": "mindNetwork",
  5379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5380. "onresize": function () { }
  5381. }, {
  5382. closecallback: function () { }
  5383. }, { "style": { "height": "36px" } }).form; //创建窗体
  5384. _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); } }
  5385. break;
  5386. case "studentClassRoom": //好友打开
  5387. _formdiv = new U.UF.UI.form(
  5388. "实时课堂",
  5389. $$("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 }), {
  5390. "id": "studentClassRoom",
  5391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //创建窗体
  5396. _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); } }
  5397. setTimeout(() => {
  5398. U.UF.F.windowZooming(_formdiv)
  5399. }, 0);
  5400. break;
  5401. }
  5402. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5403. //选择应用处理
  5404. switch (str) {
  5405. case "project": //好友打开
  5406. _formdiv = new U.UF.UI.form(
  5407. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5408. $$("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 }), {
  5409. "id": "project",
  5410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //创建窗体
  5415. _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); } }
  5416. break;
  5417. case "student":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5421. "id": "student",
  5422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5423. "onresize": function () { }
  5424. }, {
  5425. closecallback: function () { }
  5426. }, { "style": { "height": "36px" } }).form; //创建窗体
  5427. _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); } }
  5428. break;
  5429. case "evaluate":
  5430. _formdiv = new U.UF.UI.form(
  5431. "学生评价",
  5432. $$("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 }), {
  5433. "id": "evaluate",
  5434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5435. "onresize": function () { }
  5436. }, {
  5437. closecallback: function () { }
  5438. }, { "style": { "height": "36px" } }).form; //创建窗体
  5439. _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); } }
  5440. break;
  5441. case "sys":
  5442. _formdiv = new U.UF.UI.form(
  5443. "目标管理",
  5444. $$("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 }), {
  5445. "id": "sys",
  5446. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5447. "onresize": function () { }
  5448. }, {
  5449. closecallback: function () { }
  5450. }, { "style": { "height": "36px" } }).form; //创建窗体
  5451. _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); } }
  5452. break;
  5453. case "courseDesign":
  5454. _formdiv = new U.UF.UI.form(
  5455. "项目设计",
  5456. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5457. "id": "courseDesign",
  5458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5459. "onresize": function () { }
  5460. }, {
  5461. closecallback: function () { }
  5462. }, { "style": { "height": "36px" } }).form; //创建窗体
  5463. _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); } }
  5464. break;
  5465. case "program":
  5466. _formdiv = new U.UF.UI.form(
  5467. "编程平台",
  5468. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5469. "id": "program",
  5470. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5471. "onresize": function () { }
  5472. }, {
  5473. closecallback: function () { }
  5474. }, { "style": { "height": "36px" } }).form; //创建窗体
  5475. _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); } }
  5476. break;
  5477. case "class":
  5478. _formdiv = new U.UF.UI.form(
  5479. "班级管理",
  5480. $$("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 }), {
  5481. "id": "class",
  5482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5483. "onresize": function () { }
  5484. }, {
  5485. closecallback: function () { }
  5486. }, { "style": { "height": "36px" } }).form; //创建窗体
  5487. _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); } }
  5488. break;
  5489. case "Grade":
  5490. _formdiv = new U.UF.UI.form(
  5491. "年级管理",
  5492. $$("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 }), {
  5493. "id": "Grade",
  5494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5495. "onresize": function () { }
  5496. }, {
  5497. closecallback: function () { }
  5498. }, { "style": { "height": "36px" } }).form; //创建窗体
  5499. _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); } }
  5500. break;
  5501. case "teacherOffice":
  5502. _formdiv = new U.UF.UI.form(
  5503. "教研室",
  5504. $$("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 }), {
  5505. "id": "teacherOffice",
  5506. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5507. "onresize": function () { }
  5508. }, {
  5509. closecallback: function () { }
  5510. }, { "style": { "height": "36px" } }).form; //创建窗体
  5511. _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); } }
  5512. break;
  5513. case "my":
  5514. _formdiv = new U.UF.UI.form(
  5515. "我的资料",
  5516. $$("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 }), {
  5517. "id": "my",
  5518. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. _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); } }
  5524. break;
  5525. case "notice":
  5526. _formdiv = new U.UF.UI.form(
  5527. "通知公告",
  5528. $$("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 }), {
  5529. "id": "notice",
  5530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5531. "onresize": function () { }
  5532. }, {
  5533. closecallback: function () { }
  5534. }, { "style": { "height": "36px" } }).form; //创建窗体
  5535. _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); } }
  5536. break;
  5537. case "library":
  5538. _formdiv = new U.UF.UI.form(
  5539. "素材库",
  5540. $$("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 }), {
  5541. "id": "library",
  5542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. _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); } }
  5548. break;
  5549. case "whiteboard":
  5550. _formdiv = new U.UF.UI.form(
  5551. "电子白板",
  5552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5553. "id": "whiteboard",
  5554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5555. "onresize": function () { }
  5556. }, {
  5557. closecallback: function () { }
  5558. }, { "style": { "height": "36px" } }).form; //创建窗体
  5559. _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); } }
  5560. break;
  5561. case "investigation":
  5562. _formdiv = new U.UF.UI.form(
  5563. "问卷调查",
  5564. $$("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 }), {
  5565. "id": "investigation",
  5566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, { "style": { "height": "36px" } }).form; //创建窗体
  5571. _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); } }
  5572. break;
  5573. case "note":
  5574. _formdiv = new U.UF.UI.form(
  5575. "便签分类",
  5576. $$("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 }), {
  5577. "id": "note",
  5578. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //创建窗体
  5583. _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); } }
  5584. break;
  5585. // case "score":
  5586. // _formdiv = new U.UF.UI.form(
  5587. // "量规评分",
  5588. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5589. // "id": "score",
  5590. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5591. // "onresize": function() {}
  5592. // }, {
  5593. // closecallback: function() {}
  5594. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5595. // _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); } }
  5596. // break;
  5597. case "mind":
  5598. _formdiv = new U.UF.UI.form(
  5599. "思维导图",
  5600. $$("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"
  5601. "id": "mind",
  5602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, { "style": { "height": "36px" } }).form; //创建窗体
  5607. _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); } }
  5608. break;
  5609. case "doc":
  5610. // U.MD.D.I.isRoom();
  5611. _formdiv = new U.UF.UI.form(
  5612. "协同文档",
  5613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5614. "id": "doc",
  5615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5621. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5622. })
  5623. _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); } }
  5624. break;
  5625. case "study":
  5626. _formdiv = new U.UF.UI.form(
  5627. "课程中心",
  5628. $$("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
  5629. "id": "study",
  5630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. case "mindNetwork": //好友打开
  5638. _formdiv = new U.UF.UI.form(
  5639. "思维网格",
  5640. $$("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 }), {
  5641. "id": "mindNetwork",
  5642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _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); } }
  5648. break;
  5649. case "train": //好友打开
  5650. _formdiv = new U.UF.UI.form(
  5651. "训练平台",
  5652. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5653. "id": "mindNetwork",
  5654. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _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); } }
  5660. break;
  5661. case "teacherClassRoom": //好友打开
  5662. _formdiv = new U.UF.UI.form(
  5663. "实时课堂",
  5664. $$("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 }), {
  5665. "id": "teacherClassRoom",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. setTimeout(() => {
  5673. U.UF.F.windowZooming(_formdiv)
  5674. }, 0);
  5675. break;
  5676. }
  5677. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5678. switch (str) {
  5679. case "project": //好友打开
  5680. _formdiv = new U.UF.UI.form(
  5681. "课程管理",
  5682. $$("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 }), {
  5683. "id": "project",
  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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5690. break;
  5691. case "evaluate":
  5692. _formdiv = new U.UF.UI.form(
  5693. "学生评价",
  5694. $$("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 }), {
  5695. "id": "evaluate",
  5696. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5697. "onresize": function () { }
  5698. }, {
  5699. closecallback: function () { }
  5700. }, { "style": { "height": "36px" } }).form; //创建窗体
  5701. _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); } }
  5702. break;
  5703. case "notice":
  5704. _formdiv = new U.UF.UI.form(
  5705. "通知公告",
  5706. $$("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 }), {
  5707. "id": "notice",
  5708. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5709. "onresize": function () { }
  5710. }, {
  5711. closecallback: function () { }
  5712. }, { "style": { "height": "36px" } }).form; //创建窗体
  5713. _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); } }
  5714. break;
  5715. case "stuLibrary":
  5716. _formdiv = new U.UF.UI.form(
  5717. "学习资料",
  5718. $$("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 }), {
  5719. "id": "stuLibrary",
  5720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. _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); } }
  5726. break;
  5727. case "program":
  5728. _formdiv = new U.UF.UI.form(
  5729. "编程平台",
  5730. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5731. "id": "program",
  5732. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _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); } }
  5738. break;
  5739. case "whiteboard":
  5740. _formdiv = new U.UF.UI.form(
  5741. "电子白板",
  5742. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5743. "id": "whiteboard",
  5744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _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); } }
  5750. break;
  5751. case "investigation":
  5752. _formdiv = new U.UF.UI.form(
  5753. "问卷调查",
  5754. $$("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 }), {
  5755. "id": "investigation",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _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); } }
  5762. break;
  5763. case "mind":
  5764. _formdiv = new U.UF.UI.form(
  5765. "思维导图",
  5766. $$("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"
  5767. "id": "mind",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _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); } }
  5774. break;
  5775. case "doc":
  5776. // U.MD.D.I.isRoom();
  5777. _formdiv = new U.UF.UI.form(
  5778. "协同文档",
  5779. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5780. "id": "doc",
  5781. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5782. "onresize": function () { }
  5783. }, {
  5784. closecallback: function () { }
  5785. }, { "style": { "height": "36px" } }).form; //创建窗体
  5786. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5787. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5788. })
  5789. _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); } }
  5790. break;
  5791. case "study":
  5792. _formdiv = new U.UF.UI.form(
  5793. "课程中心",
  5794. $$("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
  5795. "id": "study",
  5796. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5797. "onresize": function () { }
  5798. }, {
  5799. closecallback: function () { }
  5800. }, { "style": { "height": "36px" } }).form; //创建窗体
  5801. _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); } }
  5802. break;
  5803. case "mindNetwork": //好友打开
  5804. _formdiv = new U.UF.UI.form(
  5805. "思维网格",
  5806. $$("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 }), {
  5807. "id": "mindNetwork",
  5808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5809. "onresize": function () { }
  5810. }, {
  5811. closecallback: function () { }
  5812. }, { "style": { "height": "36px" } }).form; //创建窗体
  5813. _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); } }
  5814. break;
  5815. case "train": //好友打开
  5816. _formdiv = new U.UF.UI.form(
  5817. "训练平台",
  5818. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5819. "id": "train",
  5820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5821. "onresize": function () { }
  5822. }, {
  5823. closecallback: function () { }
  5824. }, { "style": { "height": "36px" } }).form; //创建窗体
  5825. _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); } }
  5826. break;
  5827. case "sys":
  5828. _formdiv = new U.UF.UI.form(
  5829. "目标管理",
  5830. $$("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 }), {
  5831. "id": "sys",
  5832. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, { "style": { "height": "36px" } }).form; //创建窗体
  5837. _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); } }
  5838. break;
  5839. case "courseDesign":
  5840. _formdiv = new U.UF.UI.form(
  5841. "项目设计",
  5842. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5843. "id": "courseDesign",
  5844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5845. "onresize": function () { }
  5846. }, {
  5847. closecallback: function () { }
  5848. }, { "style": { "height": "36px" } }).form; //创建窗体
  5849. _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); } }
  5850. break;
  5851. }
  5852. } else if (!_type) {
  5853. switch (str) {
  5854. case "my":
  5855. _formdiv = new U.UF.UI.form(
  5856. "我的资料",
  5857. $$("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 }), {
  5858. "id": "my",
  5859. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5860. "onresize": function () { }
  5861. }, {
  5862. closecallback: function () { }
  5863. }, { "style": { "height": "36px" } }).form; //创建窗体
  5864. _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); } }
  5865. break;
  5866. }
  5867. }
  5868. switch (str) {
  5869. // AIprogram2 AI体验 aihub.cocorobo.cn
  5870. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5871. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5872. case "formulaEdi": //公式编辑
  5873. _formdiv = new U.UF.UI.form(
  5874. "公式编辑",
  5875. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5876. "id": "formulaEdi",
  5877. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. _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); } }
  5883. break;
  5884. case "molStr": //分子结构
  5885. _formdiv = new U.UF.UI.form(
  5886. "分子结构",
  5887. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5888. "id": "molStr",
  5889. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. _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); } }
  5895. break;
  5896. case "timeAxis": //时间轴
  5897. _formdiv = new U.UF.UI.form(
  5898. "时间轴",
  5899. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5900. "id": "timeAxis",
  5901. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _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); } }
  5907. break;
  5908. case "AIprogram2": //AI体验
  5909. _formdiv = new U.UF.UI.form(
  5910. "AI体验",
  5911. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5912. "id": "AIprogram2",
  5913. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _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); } }
  5919. break;
  5920. case "Pythonprogram": //python编程
  5921. _formdiv = new U.UF.UI.form(
  5922. "Python编程",
  5923. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5924. "id": "Pythonprogram",
  5925. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _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); } }
  5931. break;
  5932. case "AIprogram": //ai编程
  5933. _formdiv = new U.UF.UI.form(
  5934. "AI编程平台",
  5935. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5936. "id": "AIprogram",
  5937. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _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); } }
  5943. break;
  5944. case "CocoPi": //CocoPi
  5945. _formdiv = new U.UF.UI.form(
  5946. "CocoPi",
  5947. $$("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" }), {
  5948. "id": "CocoPi",
  5949. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _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); } }
  5955. break;
  5956. case "Wood": //Wood
  5957. _formdiv = new U.UF.UI.form(
  5958. "海龟编程",
  5959. $$("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/" }), {
  5960. "id": "Wood",
  5961. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. case "car": //模拟驾驶
  5969. _formdiv = new U.UF.UI.form(
  5970. "模拟驾驶",
  5971. $$("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/" }), {
  5972. "id": "car",
  5973. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _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); } }
  5979. break;
  5980. case "lineSearch": //路径搜索
  5981. _formdiv = new U.UF.UI.form(
  5982. "路径搜索",
  5983. $$("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/" }), {
  5984. "id": "lineSearch",
  5985. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _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); } }
  5991. break;
  5992. case "deepLearning": //深度学习
  5993. _formdiv = new U.UF.UI.form(
  5994. "深度学习",
  5995. $$("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/#" }), {
  5996. "id": "deepLearning",
  5997. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6003. break;
  6004. case "allHistory": //深度学习
  6005. _formdiv = new U.UF.UI.form(
  6006. "全历史",
  6007. $$("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/" }), {
  6008. "id": "allHistory",
  6009. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6015. break;
  6016. case "chatPDF": //ai编程
  6017. _formdiv = new U.UF.UI.form(
  6018. "chatPDF",
  6019. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6020. "id": "chatPDF",
  6021. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6027. break;
  6028. case "resources": //国家教育
  6029. _formdiv = new U.UF.UI.form(
  6030. "国家教育",
  6031. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6032. "id": "resources",
  6033. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6039. break;
  6040. case "codeEdit": //源码编辑
  6041. _formdiv = new U.UF.UI.form(
  6042. "源码编辑",
  6043. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6044. "id": "codeEdit",
  6045. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6051. break; //
  6052. case "MindMap": //MindMap
  6053. _formdiv = new U.UF.UI.form(
  6054. "MindMap",
  6055. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6056. "id": "MindMap",
  6057. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. case "netWorkPanel": //netWorkPanel
  6065. _formdiv = new U.UF.UI.form(
  6066. "netWorkPanel",
  6067. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6068. "id": "netWorkPanel",
  6069. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. _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); } }
  6075. break;
  6076. case "GeoGebra": //GeoGebra
  6077. _formdiv = new U.UF.UI.form(
  6078. "GeoGebra",
  6079. $$("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" }), {
  6080. "id": "GeoGebra",
  6081. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _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); } }
  6087. break;
  6088. case "translation": //翻译
  6089. _formdiv = new U.UF.UI.form(
  6090. "翻译",
  6091. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6092. "id": "translation",
  6093. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. case "mohe": //魔盒
  6101. _formdiv = new U.UF.UI.form(
  6102. "魔盒识字",
  6103. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6104. "id": "mohe",
  6105. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. _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); } }
  6111. break;
  6112. case "24game": //24点
  6113. _formdiv = new U.UF.UI.form(
  6114. "24点",
  6115. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6116. "id": "24game",
  6117. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "case":
  6125. _formdiv = new U.UF.UI.form(
  6126. "课程进展",
  6127. $$("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 }), {
  6128. "id": "case",
  6129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. _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); } }
  6135. break;
  6136. case "snf":
  6137. _formdiv = new U.UF.UI.form(
  6138. "赛诺梵",
  6139. $$("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" }), {
  6140. "id": "snf",
  6141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _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); } }
  6147. break;
  6148. case "hanFamily":
  6149. _formdiv = new U.UF.UI.form(
  6150. "汉字家族",
  6151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6152. "id": "hanFamily",
  6153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _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); } }
  6159. break;
  6160. case "hanClassics":
  6161. _formdiv = new U.UF.UI.form(
  6162. "国学经典",
  6163. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6164. "id": "hanClassics",
  6165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _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); } }
  6171. break;
  6172. case "hanTraining":
  6173. _formdiv = new U.UF.UI.form(
  6174. "笔画训练",
  6175. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6176. "id": "hanTraining",
  6177. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _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); } }
  6183. break;
  6184. case "hanClass":
  6185. _formdiv = new U.UF.UI.form(
  6186. "书法课堂",
  6187. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6188. "id": "hanClass",
  6189. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. _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); } }
  6195. break;
  6196. case "han":
  6197. _formdiv = new U.UF.UI.form(
  6198. "汉字宫",
  6199. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6200. "id": "han",
  6201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "projectGM": //课程管理
  6209. _formdiv = new U.UF.UI.form(
  6210. "课程管理",
  6211. $$("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 }), {
  6212. "id": "projectGM",
  6213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _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); } }
  6219. break;
  6220. case "studyGM": //课程中心
  6221. _formdiv = new U.UF.UI.form(
  6222. "课程中心",
  6223. $$("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
  6224. "id": "study",
  6225. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _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); } }
  6231. break;
  6232. // studentGM
  6233. case "studentGM": //学生管理
  6234. _formdiv = new U.UF.UI.form(
  6235. "学生管理",
  6236. $$("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 }), {
  6237. "id": "studentGM",
  6238. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6239. "onresize": function () { }
  6240. }, {
  6241. closecallback: function () { }
  6242. }, { "style": { "height": "36px" } }).form; //创建窗体
  6243. _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); } }
  6244. break;
  6245. case "evaluateGM": //学生评价
  6246. _formdiv = new U.UF.UI.form(
  6247. "学生评价",
  6248. $$("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 }), {
  6249. "id": "evaluateGM",
  6250. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6251. "onresize": function () { }
  6252. }, {
  6253. closecallback: function () { }
  6254. }, { "style": { "height": "36px" } }).form; //创建窗体
  6255. _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); } }
  6256. break;
  6257. // classGM
  6258. case "classGM": //班级管理
  6259. _formdiv = new U.UF.UI.form(
  6260. "班级管理",
  6261. $$("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 }), {
  6262. "id": "classGM",
  6263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. _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); } }
  6269. break;
  6270. // dataGM
  6271. case "dataGM":
  6272. _formdiv = new U.UF.UI.form(
  6273. "我的资料",
  6274. $$("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 }), {
  6275. "id": "dataGM",
  6276. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //创建窗体
  6281. _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); } }
  6282. break;
  6283. // caseGM
  6284. case "caseGM": //课程进展
  6285. _formdiv = new U.UF.UI.form(
  6286. "课程进展",
  6287. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6288. "id": "caseGM",
  6289. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6290. "onresize": function () { }
  6291. }, {
  6292. closecallback: function () { }
  6293. }, { "style": { "height": "36px" } }).form; //创建窗体
  6294. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6295. break;
  6296. // meterialGM
  6297. case "meterialGM": //素材库
  6298. _formdiv = new U.UF.UI.form(
  6299. "素材库",
  6300. $$("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 }), {
  6301. "id": "meterialGM",
  6302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6303. "onresize": function () { }
  6304. }, {
  6305. closecallback: function () { }
  6306. }, { "style": { "height": "36px" } }).form; //创建窗体
  6307. _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); } }
  6308. break;
  6309. // evaluateSGM
  6310. case "evaluateSGM": //我的评价
  6311. _formdiv = new U.UF.UI.form(
  6312. "我的评价",
  6313. $$("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 }), {
  6314. "id": "evaluateSGM",
  6315. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _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); } }
  6321. break;
  6322. case "jupyter": //jupyter
  6323. _formdiv = new U.UF.UI.form(
  6324. "jupyter",
  6325. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6326. "id": "jupyter",
  6327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _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); } }
  6333. break;
  6334. case "number": //数字实验室
  6335. _formdiv = new U.UF.UI.form(
  6336. "数字实验室",
  6337. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6338. "id": "number",
  6339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6340. "onresize": function () { }
  6341. }, {
  6342. closecallback: function () { }
  6343. }, { "style": { "height": "36px" } }).form; //创建窗体
  6344. _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); } }
  6345. break;
  6346. case "studentCourse": //项目管理 学生
  6347. _formdiv = new U.UF.UI.form(
  6348. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6349. $$("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 }), {
  6350. "id": "studentCourse",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. _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); } }
  6357. break;
  6358. case "studentCourseS": //项目管理 老师
  6359. _formdiv = new U.UF.UI.form(
  6360. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6361. $$("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 }), {
  6362. "id": "studentCourseS",
  6363. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6364. "onresize": function () { }
  6365. }, {
  6366. closecallback: function () { }
  6367. }, { "style": { "height": "36px" } }).form; //创建窗体
  6368. _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); } }
  6369. break;
  6370. case "studentIndex": //项目中心
  6371. _formdiv = new U.UF.UI.form(
  6372. "项目中心",
  6373. $$("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 }), {
  6374. "id": "studentIndex",
  6375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6376. "onresize": function () { }
  6377. }, {
  6378. closecallback: function () { }
  6379. }, { "style": { "height": "36px" } }).form; //创建窗体
  6380. _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); } }
  6381. break;
  6382. case "CaseDesignS":
  6383. _formdiv = new U.UF.UI.form(
  6384. "项目进展",
  6385. $$("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 }), {
  6386. "id": "case",
  6387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6388. "onresize": function () { }
  6389. }, {
  6390. closecallback: function () { }
  6391. }, { "style": { "height": "36px" } }).form; //创建窗体
  6392. _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); } }
  6393. break;
  6394. case "tcStudent": //腾讯学生管理
  6395. _formdiv = new U.UF.UI.form(
  6396. "学生管理",
  6397. $$("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 }), {
  6398. "id": "tcStudent",
  6399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6400. "onresize": function () { }
  6401. }, {
  6402. closecallback: function () { }
  6403. }, { "style": { "height": "36px" } }).form; //创建窗体
  6404. _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); } }
  6405. break;
  6406. case "tcSchool": //腾讯学校管理
  6407. _formdiv = new U.UF.UI.form(
  6408. "学校管理",
  6409. $$("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 }), {
  6410. "id": "tcSchool",
  6411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6412. "onresize": function () { }
  6413. }, {
  6414. closecallback: function () { }
  6415. }, { "style": { "height": "36px" } }).form; //创建窗体
  6416. _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); } }
  6417. break;
  6418. case "tcTeacher": //腾讯学校管理
  6419. _formdiv = new U.UF.UI.form(
  6420. "教师管理",
  6421. $$("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 }), {
  6422. "id": "tcTeacher",
  6423. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, { "style": { "height": "36px" } }).form; //创建窗体
  6428. _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); } }
  6429. break;
  6430. case "teacher":
  6431. _formdiv = new U.UF.UI.form(
  6432. "教师管理",
  6433. $$("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 }), {
  6434. "id": "teacher",
  6435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6436. "onresize": function () { }
  6437. }, {
  6438. closecallback: function () { }
  6439. }, { "style": { "height": "36px" } }).form; //创建窗体
  6440. _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); } }
  6441. break;
  6442. case "tcData": //腾讯我的资料
  6443. _formdiv = new U.UF.UI.form(
  6444. "我的资料",
  6445. $$("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 }), {
  6446. "id": "tcData",
  6447. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6448. "onresize": function () { }
  6449. }, {
  6450. closecallback: function () { }
  6451. }, { "style": { "height": "36px" } }).form; //创建窗体
  6452. _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); } }
  6453. break;
  6454. case "tcNotice": //腾讯消息通知
  6455. _formdiv = new U.UF.UI.form(
  6456. "消息通知",
  6457. $$("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 }), {
  6458. "id": "tcNotice",
  6459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6460. "onresize": function () { }
  6461. }, {
  6462. closecallback: function () { }
  6463. }, { "style": { "height": "36px" } }).form; //创建窗体
  6464. _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); } }
  6465. break;
  6466. case "myReport": //好友打开
  6467. _formdiv = new U.UF.UI.form(
  6468. "我的评价",
  6469. $$("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 }), {
  6470. "id": "myReport",
  6471. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () { }
  6475. }, { "style": { "height": "36px" } }).form; //创建窗体
  6476. _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); } }
  6477. break;
  6478. case "learnAna": //好友打开
  6479. _formdiv = new U.UF.UI.form(
  6480. "学习分析",
  6481. $$("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 }), {
  6482. "id": "learnAna",
  6483. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, { "style": { "height": "36px" } }).form; //创建窗体
  6488. _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); } }
  6489. break;
  6490. case "AIChat": //AI共创
  6491. _formdiv = new U.UF.UI.form(
  6492. "AI共创",
  6493. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6494. "id": "AIChat",
  6495. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. istop: true,
  6499. closecallback: function () { $("#aichat_icon").remove(); },
  6500. narrowcallback: function () {
  6501. if (!$("#aichat_icon")[0]) {
  6502. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6503. }
  6504. },
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _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); } }
  6507. break;
  6508. case "ainew": //AI共创
  6509. _formdiv = new U.UF.UI.form(
  6510. "AI协同",
  6511. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6512. "id": "ainew",
  6513. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6514. "onresize": function () { }
  6515. }, {
  6516. closecallback: function () { }
  6517. }, { "style": { "height": "36px" } }).form; //创建窗体
  6518. _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); } }
  6519. break;
  6520. case "gpt4": //gpt4
  6521. _formdiv = new U.UF.UI.form(
  6522. "AI助手",
  6523. $$("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 }), {
  6524. "id": "gpt4",
  6525. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6526. "onresize": function () { }
  6527. }, {
  6528. closecallback: function () { }
  6529. }, { "style": { "height": "36px" } }).form; //创建窗体
  6530. _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); } }
  6531. break;
  6532. case "aigpt": //gpt4
  6533. _formdiv = new U.UF.UI.form(
  6534. "AI助手+",
  6535. $$("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 }), {
  6536. "id": "aigpt",
  6537. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6538. "onresize": function () { }
  6539. }, {
  6540. closecallback: function () {
  6541. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6542. }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6546. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6547. })
  6548. break;
  6549. case "aiKnowledge": //aiKnowledge
  6550. _formdiv = new U.UF.UI.form(
  6551. "知识建构",
  6552. $$("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 }), {
  6553. "id": "aiKnowledge",
  6554. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. break;
  6561. case "futureClass": //AI共创
  6562. _formdiv = new U.UF.UI.form(
  6563. "协同建构",
  6564. $$("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
  6565. "id": "synergyCourse",
  6566. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () {
  6570. $("iframe", _formdiv)[0].contentWindow.loginout();
  6571. }
  6572. }, { "style": { "height": "36px" } }).form; //创建窗体
  6573. _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); } }
  6574. break;
  6575. case "aiagent": //ai agent
  6576. _formdiv = new U.UF.UI.form(
  6577. "AI Agent",
  6578. $$("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" }), {
  6579. "id": "AIAgent",
  6580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _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); } }
  6586. break;
  6587. case "dataBoard": //数据看板
  6588. _formdiv = new U.UF.UI.form(
  6589. "数据看板",
  6590. $$("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 }), {
  6591. "id": "dataBoard",
  6592. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. _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); } }
  6598. break;
  6599. case "dataBoardSies": //数据融合
  6600. _formdiv = new U.UF.UI.form(
  6601. "数据融合",
  6602. $$("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 }), {
  6603. "id": "dataBoardSies",
  6604. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6605. "onresize": function () { }
  6606. }, {
  6607. closecallback: function () { }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _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); } }
  6610. break;
  6611. case "dataBoardNew": //数据看板
  6612. _formdiv = new U.UF.UI.form(
  6613. "综合看板",
  6614. $$("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 }), {
  6615. "id": "dataBoardNew",
  6616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _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); } }
  6622. break;
  6623. case "dataBoardTest": //数据看板
  6624. _formdiv = new U.UF.UI.form(
  6625. "评测看板",
  6626. $$("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 }), {
  6627. "id": "dataBoardTest",
  6628. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "AIAnalyse": //AI共创
  6636. _formdiv = new U.UF.UI.form(
  6637. "AI分析",
  6638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6639. "id": "AIAnalyse",
  6640. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. break;
  6647. case "studioCourse": //AI共创
  6648. _formdiv = new U.UF.UI.form(
  6649. "工作管理",
  6650. $$("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 }), {
  6651. "id": "studioCourse",
  6652. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _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); } }
  6658. break;
  6659. case "studioIndex": //AI共创
  6660. _formdiv = new U.UF.UI.form(
  6661. "工作中心",
  6662. $$("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 }), {
  6663. "id": "studioIndex",
  6664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _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); } }
  6670. break;
  6671. case "source":
  6672. _formdiv = new U.UF.UI.form(
  6673. "教学资源",
  6674. $$("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 }), {
  6675. "id": "source",
  6676. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "testTeacher":
  6684. _formdiv = new U.UF.UI.form(
  6685. "教师管理",
  6686. $$("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 }), {
  6687. "id": "testTeacher",
  6688. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "testStudent":
  6696. _formdiv = new U.UF.UI.form(
  6697. "教师中心",
  6698. $$("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 }), {
  6699. "id": "testStudent",
  6700. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "testTeacherSies":
  6708. _formdiv = new U.UF.UI.form(
  6709. "教师管理",
  6710. $$("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 }), {
  6711. "id": "testTeacherSies",
  6712. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "testStudentSies":
  6720. _formdiv = new U.UF.UI.form(
  6721. "教师中心",
  6722. $$("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 }), {
  6723. "id": "testStudentSies",
  6724. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _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); } }
  6730. break;
  6731. case "ytpbl": //消息通知
  6732. _formdiv = new U.UF.UI.form(
  6733. "案例征集",
  6734. $$("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 }), {
  6735. "id": "ytpbl",
  6736. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _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); } }
  6742. // 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");
  6743. break;
  6744. case "aiCourseResource": //人工智能窗体
  6745. _formdiv = new U.UF.UI.form(
  6746. false,
  6747. $$("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 }), {
  6748. "id": "aiCourseResource",
  6749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6750. "onresize": function () { },
  6751. "isdrag": false,
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _taskbar = ''
  6756. break;
  6757. case "szdjgCocooroboX": //图形化编程
  6758. _formdiv = new U.UF.UI.form(
  6759. "图形化编程",
  6760. $$("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" }), {
  6761. "id": "szdjgCocooroboX",
  6762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _taskbar = ''
  6768. break;
  6769. case "szdjgPython": //python编程
  6770. _formdiv = new U.UF.UI.form(
  6771. "Python编程",
  6772. $$("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" }), {
  6773. "id": "szdjgPython",
  6774. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () { }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _taskbar = ''
  6780. break;
  6781. case "Record":
  6782. _formdiv = new U.UF.UI.form(
  6783. "观察记录",
  6784. $$("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 }), {
  6785. "id": "Record",
  6786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6787. "onresize": function () { }
  6788. }, {
  6789. closecallback: function () { }
  6790. }, { "style": { "height": "36px" } }).form; //创建窗体
  6791. _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); } }
  6792. break;
  6793. case "aigptCourse":
  6794. _formdiv = new U.UF.UI.form(
  6795. "AI智能体",
  6796. $$("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' }), {
  6797. "id": "aigptCourse",
  6798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6799. "onresize": function () { }
  6800. }, {
  6801. closecallback: function () { }
  6802. }, { "style": { "height": "36px" } }).form; //创建窗体
  6803. _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); } }
  6804. break;
  6805. case "classroomObservation":
  6806. _formdiv = new U.UF.UI.form(
  6807. "课堂观察",
  6808. $$("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 }), {
  6809. "id": "classroomObservation",
  6810. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6811. "onresize": function () { }
  6812. }, {
  6813. closecallback: function () { }
  6814. }, { "style": { "height": "36px" } }).form; //创建窗体
  6815. _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); } }
  6816. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6817. break;
  6818. case "pblCourse":
  6819. _formdiv = new U.UF.UI.form(
  6820. "学生PBL",
  6821. $$("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 }), {
  6822. "id": "pblCourse",
  6823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6824. "onresize": function () { }
  6825. }, {
  6826. closecallback: function () { }
  6827. }, { "style": { "height": "36px" } }).form; //创建窗体
  6828. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6829. break;
  6830. }
  6831. //U.MD.D.I.openClick(str);
  6832. //如果有任务栏信息
  6833. if (_taskbar) {
  6834. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6835. }
  6836. }
  6837. // U.MD.D.I.openClick = function(str){
  6838. // var click = '';
  6839. // switch(str){
  6840. // case 'friend':
  6841. // click = '我的好友';
  6842. // break;
  6843. // case 'domain':
  6844. // click = '域名管理';
  6845. // break;
  6846. // case 'disk':
  6847. // click = '我的云盘';
  6848. // break;
  6849. // case 'word':
  6850. // click = 'Word';
  6851. // break;
  6852. // case 'excel':
  6853. // click = 'Execl';
  6854. // break;
  6855. // case 'txt':
  6856. // click = '文本文件';
  6857. // break;
  6858. // case 'lookupFriend':
  6859. // click = '查找好友';
  6860. // break;
  6861. // case 'ftp':
  6862. // click = 'FTP';
  6863. // break;
  6864. // case 'group':
  6865. // click = '群组';
  6866. // break;
  6867. // case 'set':
  6868. // click = '我的设置';
  6869. // break;
  6870. // case 'systemSet':
  6871. // click = '系统设置';
  6872. // break;
  6873. // case 'boomYun':
  6874. // click = '互联办公';
  6875. // break;
  6876. // case 'xz':
  6877. // click = '云端下载';
  6878. // break;
  6879. // case 'client':
  6880. // click = '有思浏览器';
  6881. // break;
  6882. // case 'backEndProgramming':
  6883. // click = '在线后台编程';
  6884. // break;
  6885. // case 'frontEndProgramming':
  6886. // click = '在线前端编程';
  6887. // break;
  6888. // default: break;
  6889. // }
  6890. // if(U.MD.D.I.Ip && click){
  6891. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6892. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6893. // })
  6894. // }
  6895. // }
  6896. /**
  6897. *函数作用:ajax简易函数,使用post格式
  6898. *@param url {data} 后台地址
  6899. *@param data {data} 参数json
  6900. *@param fn {data} 回调函数
  6901. *
  6902. */
  6903. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6904. // var xhr = new XMLHttpRequest();
  6905. // xhr.open("GET",url,true);
  6906. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6907. // xhr.onreadystatechange = function(){
  6908. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6909. // fn.call(this,xhr.responseText);
  6910. // }
  6911. // };
  6912. // xhr.send();
  6913. // }
  6914. /*判断是否是内网IP*/
  6915. // U.MD.D.I.isInnerIPFn = function(str){
  6916. // var curPageUrl = str;
  6917. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6918. // curPageUrl =curPageUrl.replace(reg1,'');
  6919. // // console.log('curPageUrl-1 '+curPageUrl);
  6920. // var reg2 = /\:+/g;//替换冒号为一点
  6921. // curPageUrl =curPageUrl.replace(reg2,'.');
  6922. // // console.log('curPageUrl-2 '+curPageUrl);
  6923. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6924. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6925. // if(curPageUrl[2] != '16'){
  6926. // return ipAddress;
  6927. // }else{
  6928. // return false;
  6929. // }
  6930. // }
  6931. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6932. // //compatibility for firefox and chrome
  6933. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6934. // var pc = new myPeerConnection({
  6935. // iceServers: []
  6936. // }),
  6937. // noop = function() {},
  6938. // localIPs = {},
  6939. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6940. // key;
  6941. // function iterateIP(ip) {
  6942. // if (!localIPs[ip]) onNewIP(ip);
  6943. // localIPs[ip] = true;
  6944. // }
  6945. // //create a bogus data channel
  6946. // pc.createDataChannel("");
  6947. // // create offer and set local description
  6948. // pc.createOffer().then(function(sdp) {
  6949. // sdp.sdp.split('\n').forEach(function(line) {
  6950. // if (line.indexOf('candidate') < 0) return;
  6951. // line.match(ipRegex).forEach(iterateIP);
  6952. // });
  6953. // pc.setLocalDescription(sdp, noop, noop);
  6954. // }).catch(function(reason) {
  6955. // // An error occurred, so handle the failure to connect
  6956. // });
  6957. // //sten for candidate events
  6958. // pc.onicecandidate = function(ice) {
  6959. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6960. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6961. // };
  6962. // }
  6963. // U.MD.D.I.getUserIpBool = function(callback){
  6964. // U.MD.D.I.getUserIP(function(ip){
  6965. // alert("Got IP! :" + ip);
  6966. // });
  6967. //}
  6968. //#endregion
  6969. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6970. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6971. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6972. _userinfo = US.userInfo, //登录用户信息
  6973. _userid = US.userInfo.userid //登录用户id
  6974. let _iframe;
  6975. let _cid = cid,
  6976. _stage = stage,
  6977. _task = task,
  6978. _tool = tool;
  6979. var _jie = $$("div", {
  6980. "style": {
  6981. "position": "absolute",
  6982. "bottom": "50px",
  6983. "right": "50px",
  6984. "zIndex": "9999",
  6985. "backgroundColor": "#2268bc",
  6986. "color": "#fff",
  6987. "padding": "12px 20px",
  6988. "cursor": "pointer",
  6989. "borderRadius": "4px",
  6990. },
  6991. "innerHTML": "提交作业"
  6992. })
  6993. let aTool = ''
  6994. let _loading = document.createElement('div')
  6995. _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;"
  6996. // _loading.id = "";
  6997. let _lchild = document.createElement('div')
  6998. let _limg = document.createElement('img')
  6999. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7000. _limg.style = "width: 26px;margin-right: 10px;"
  7001. _lchild.appendChild(_limg)
  7002. let _lspan = document.createElement('span')
  7003. _lspan.innerHTML = "上传中..."
  7004. _lchild.appendChild(_lspan)
  7005. _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%);"
  7006. _loading.appendChild(_lchild)
  7007. var _box = $$('div', {
  7008. "style": {
  7009. "position": "relative",
  7010. "width": "100%",
  7011. "height": "100%",
  7012. },
  7013. })
  7014. _box.appendChild(_loading)
  7015. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7016. switch (str) {
  7017. case "whiteboard":
  7018. aTool = 1;
  7019. _iframe = $$("iframe", {
  7020. "frameborder": "no",
  7021. "border": "0",
  7022. "scrolling ": "no",
  7023. "style": {
  7024. "cssText": "border:0;width:100%;height:100%"
  7025. },
  7026. "src": "https://beta.iwb.cocorobo.cn/"
  7027. })
  7028. _box.appendChild(_iframe);
  7029. _box.appendChild(_jie);
  7030. _formdiv = new U.UF.UI.form(
  7031. "电子白板",
  7032. _box, {
  7033. "id": "whiteboard" + cid + stage + task + tool,
  7034. "style": {
  7035. "width": "90%",
  7036. "height": "90%",
  7037. "overflow": 'hidden'
  7038. },
  7039. "onresize": function () { }
  7040. }, {
  7041. closecallback: function () { }
  7042. }, {
  7043. "style": {
  7044. "height": "36px"
  7045. }
  7046. }).form; //创建窗体
  7047. _taskbar = {
  7048. "id": str + _formdiv.id,
  7049. "style": {
  7050. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7051. },
  7052. "name": "电子白板",
  7053. "forms": _formdiv,
  7054. "click": function () {
  7055. U.MD.D.I.openApplication(str, obj, info);
  7056. }
  7057. }
  7058. break;
  7059. case "mind":
  7060. aTool = 3;
  7061. _iframe = $$("iframe", {
  7062. "frameborder": "no",
  7063. "border": "0",
  7064. "scrolling ": "no",
  7065. "style": {
  7066. "cssText": "border:0;width:100%;height:100%"
  7067. },
  7068. "src": "/kityminder-editor/dist/index.html"
  7069. })
  7070. _box.appendChild(_iframe);
  7071. _box.appendChild(_jie);
  7072. _formdiv = new U.UF.UI.form(
  7073. "思维导图",
  7074. _box, { //"/jsmind/example/demo.html"
  7075. "id": "mind" + cid + stage + task + tool,
  7076. "style": {
  7077. "width": "90%",
  7078. "height": "90%",
  7079. "overflow": 'hidden'
  7080. },
  7081. "onresize": function () { }
  7082. }, {
  7083. closecallback: function () { }
  7084. }, {
  7085. "style": {
  7086. "height": "36px"
  7087. }
  7088. }).form; //创建窗体
  7089. _taskbar = {
  7090. "id": str + _formdiv.id,
  7091. "style": {
  7092. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7093. },
  7094. "name": "思维导图",
  7095. "forms": _formdiv,
  7096. "click": function () {
  7097. U.MD.D.I.openApplication(str, obj, info);
  7098. }
  7099. }
  7100. break;
  7101. case "MindMap":
  7102. aTool = 3;
  7103. _iframe = $$("iframe", {
  7104. "frameborder": "no",
  7105. "border": "0",
  7106. "scrolling ": "no",
  7107. "style": {
  7108. "cssText": "border:0;width:100%;height:100%"
  7109. },
  7110. "src": "//cloud.cocorobo.cn/mind/"
  7111. })
  7112. _box.appendChild(_iframe);
  7113. _box.appendChild(_jie);
  7114. _formdiv = new U.UF.UI.form(
  7115. "思维导图",
  7116. _box, { //"/jsmind/example/demo.html"
  7117. "id": "mind" + cid + stage + task + tool,
  7118. "style": {
  7119. "width": "90%",
  7120. "height": "90%",
  7121. "overflow": 'hidden'
  7122. },
  7123. "onresize": function () { }
  7124. }, {
  7125. closecallback: function () { }
  7126. }, {
  7127. "style": {
  7128. "height": "36px"
  7129. }
  7130. }).form; //创建窗体
  7131. _taskbar = {
  7132. "id": str + _formdiv.id,
  7133. "style": {
  7134. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7135. },
  7136. "name": "思维导图",
  7137. "forms": _formdiv,
  7138. "click": function () {
  7139. U.MD.D.I.openApplication(str, obj, info);
  7140. }
  7141. }
  7142. break;
  7143. case "doc":
  7144. aTool = 6;
  7145. _iframe = $$("iframe", {
  7146. "frameborder": "no",
  7147. "border": "0",
  7148. "scrolling ": "no",
  7149. "style": {
  7150. "cssText": "border:0;width:100%;height:100%"
  7151. },
  7152. "src": "/Office/Word/WordEditArea.htm"
  7153. })
  7154. _box.appendChild(_iframe);
  7155. _box.appendChild(_jie);
  7156. _formdiv = new U.UF.UI.form(
  7157. "协同文档",
  7158. _box, {
  7159. "id": "doc" + cid + stage + task + tool,
  7160. "style": {
  7161. "width": "90%",
  7162. "height": "90%",
  7163. "overflow": 'hidden'
  7164. },
  7165. "onresize": function () { }
  7166. }, {
  7167. closecallback: function () { }
  7168. }, {
  7169. "style": {
  7170. "height": "36px"
  7171. }
  7172. }).form; //创建窗体
  7173. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7174. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7175. })
  7176. _taskbar = {
  7177. "id": str + _formdiv.id,
  7178. "style": {
  7179. "backgroundImage": "url(/img/icon/doc.png)"
  7180. },
  7181. "name": "协同文档",
  7182. "forms": _formdiv,
  7183. "click": function () {
  7184. U.MD.D.I.openApplication(str, obj, info);
  7185. }
  7186. }
  7187. break;
  7188. case "mindNetwork": //好友打开
  7189. aTool = 7;
  7190. _iframe = $$("iframe", {
  7191. "webkitallowfullscreen": "",
  7192. "mozallowfullscreen": "",
  7193. "allowfullscreen": "",
  7194. "frameborder": "no",
  7195. "border": "0",
  7196. "scrolling ": "no",
  7197. "style": {
  7198. "cssText": "border:0; width:100%; height:100%;"
  7199. },
  7200. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7201. })
  7202. _box.appendChild(_iframe);
  7203. _box.appendChild(_jie);
  7204. _formdiv = new U.UF.UI.form(
  7205. "思维网格",
  7206. _box, {
  7207. "id": "mindNetwork" + cid + stage + task + tool,
  7208. "style": {
  7209. "width": "90%",
  7210. "height": "90%",
  7211. "overflow": 'hidden'
  7212. },
  7213. "onresize": function () { }
  7214. }, {
  7215. closecallback: function () { }
  7216. }, {
  7217. "style": {
  7218. "height": "36px"
  7219. }
  7220. }).form; //创建窗体
  7221. _taskbar = {
  7222. "id": str + _formdiv.id,
  7223. "style": {
  7224. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7225. },
  7226. "name": "思维网格",
  7227. "forms": _formdiv,
  7228. "click": function () {
  7229. U.MD.D.I.openApplication(str, obj, info);
  7230. }
  7231. }
  7232. break;
  7233. case "courseDesign":
  7234. _iframe = $$("iframe", {
  7235. "webkitallowfullscreen": "",
  7236. "mozallowfullscreen": "",
  7237. "allowfullscreen": "",
  7238. "frameborder": "no",
  7239. "border": "0",
  7240. "scrolling ": "no",
  7241. "style": {
  7242. "cssText": "border:0; width:100%; height:100%;"
  7243. },
  7244. "src": "/course-design-vue"
  7245. })
  7246. _box.appendChild(_iframe);
  7247. _box.appendChild(_jie);
  7248. _formdiv = new U.UF.UI.form(
  7249. "项目设计",
  7250. _box, {
  7251. "id": "courseDesign" + cid + stage + task + tool,
  7252. "style": {
  7253. "width": "90%",
  7254. "height": "90%",
  7255. "overflow": 'hidden'
  7256. },
  7257. "onresize": function () { }
  7258. }, {
  7259. closecallback: function () { }
  7260. }, {
  7261. "style": {
  7262. "height": "36px"
  7263. }
  7264. }).form; //创建窗体
  7265. _taskbar = {
  7266. "id": str + _formdiv.id,
  7267. "style": {
  7268. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7269. },
  7270. "name": "项目设计",
  7271. "forms": _formdiv,
  7272. "click": function () {
  7273. U.MD.D.I.openApplication(str, obj, info);
  7274. }
  7275. }
  7276. break;
  7277. }
  7278. const script1 = document.createElement("script");
  7279. script1.type = "text/javascript";
  7280. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7281. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7282. const script2 = document.createElement("script");
  7283. script2.type = "text/javascript";
  7284. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7285. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7286. const script3 = document.createElement("script");
  7287. script3.type = "text/javascript";
  7288. script3.charset = "UTF-8";
  7289. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7290. const script4 = document.createElement("script");
  7291. script4.type = "text/javascript";
  7292. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7293. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7294. if (_iframe) {
  7295. if (str == 'doc') {
  7296. _iframe = _formdiv.querySelector('iframe')
  7297. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7298. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7299. _iframe.contentWindow.document.body.appendChild(script1);
  7300. _iframe.contentWindow.document.body.appendChild(script2);
  7301. // _iframe.contentWindow.document.body.appendChild(script3);
  7302. _iframe.contentWindow.document.body.appendChild(script4);
  7303. })
  7304. if (onloadListener) {
  7305. _iframe.contentDocument.location.reload()
  7306. } else {
  7307. _iframe.contentDocument.location.reload()
  7308. }
  7309. } else if (str == 'courseDesign') {
  7310. U.UF.DL.iframeLoad(_iframe, function () {
  7311. // _iframe.contentWindow.U.MD.O.W.load();
  7312. // _iframe.contentWindow.document.body.appendChild(script1);
  7313. _iframe.contentWindow.document.body.appendChild(script2);
  7314. _iframe.contentWindow.document.body.appendChild(script4);
  7315. })
  7316. } else if (str == 'mind') {
  7317. _iframe = _formdiv.querySelector('iframe')
  7318. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7319. //
  7320. _iframe.contentWindow.document.body.appendChild(script1);
  7321. _iframe.contentWindow.document.body.appendChild(script2);
  7322. _iframe.contentWindow.document.body.appendChild(script4);
  7323. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7324. })
  7325. if (onloadListener) {
  7326. _iframe.contentDocument.location.reload()
  7327. } else {
  7328. _iframe.contentDocument.location.reload()
  7329. }
  7330. } else if (str == 'whiteboard') {
  7331. _iframe = _formdiv.querySelector('iframe')
  7332. let onloadListener = _iframe.onload = () => {
  7333. _iframe.contentWindow.document.body.appendChild(script1);
  7334. _iframe.contentWindow.document.body.appendChild(script2);
  7335. _iframe.contentWindow.document.body.appendChild(script4);
  7336. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7337. };
  7338. // if (onloadListener) {
  7339. // try {
  7340. // _iframe.src += "?cocorobo="+new Date().getTime()
  7341. // _iframe.contentWindow.document.location.reload()
  7342. // } catch (error) {
  7343. // }
  7344. // } else {
  7345. // _iframe.contentDocument.location.reload()
  7346. // }
  7347. } else {
  7348. _iframe.onload = () => {
  7349. _iframe.contentWindow.document.body.appendChild(script1);
  7350. _iframe.contentWindow.document.body.appendChild(script2);
  7351. // _iframe.contentWindow.document.body.appendChild(script3);
  7352. _iframe.contentWindow.document.body.appendChild(script4);
  7353. };
  7354. }
  7355. _jie.onclick = async () => {
  7356. let text = ''
  7357. if (aTool == 1) {
  7358. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7359. } else if (aTool == 6) {
  7360. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7361. } else if (aTool == 3) {
  7362. text = await U.MD.D.I.getEditorContent(_iframe);
  7363. }
  7364. _loading.style.display = 'flex'
  7365. console.log(_loading);
  7366. var _ajs = _iframe.contentWindow.document.createElement("script");
  7367. _ajs.type = "text/javascript";
  7368. _ajs.innerHTML =
  7369. // 'console.log(' + _loading + ');\n' +
  7370. 'var _js = document.createElement("script");\n' +
  7371. '_js.type="text/javascript";\n' +
  7372. '_js.charset="UTF-8";\n' +
  7373. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7374. "_js.onload = function(){\n" +
  7375. ' var a = document.getElementsByTagName("img")\n' +
  7376. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7377. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7378. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7379. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7380. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7381. "beforeUpload_shishi(file," +
  7382. "'" +
  7383. _userid +
  7384. "'" +
  7385. ", " +
  7386. "'" +
  7387. _cid +
  7388. "'" +
  7389. ", " +
  7390. "'" +
  7391. _stage +
  7392. "'" +
  7393. ", " +
  7394. "'" +
  7395. _task +
  7396. "'" +
  7397. ", " +
  7398. "'" +
  7399. _tool +
  7400. "'" +
  7401. ", " +
  7402. "'" +
  7403. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7404. "'" +
  7405. ", " +
  7406. "'" +
  7407. aTool +
  7408. "'" +
  7409. ", " +
  7410. "`" +
  7411. text +
  7412. "`" +
  7413. ")\n" +
  7414. " });\n" +
  7415. "}\n" +
  7416. "document.head.appendChild(_js);\n";
  7417. _iframe.contentWindow.document.head.appendChild(_ajs);
  7418. }
  7419. }
  7420. //U.MD.D.I.openClick(str);
  7421. //如果有任务栏信息
  7422. // if (_taskbar) {
  7423. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7424. // }
  7425. }
  7426. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7427. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7428. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7429. _userinfo = US.userInfo, //登录用户信息
  7430. _userid = US.userInfo.userid //登录用户id
  7431. let _iframe;
  7432. let _cid = cid,
  7433. _stage = stage,
  7434. _task = task,
  7435. _tool = tool;
  7436. var _jie = $$("div", {
  7437. "style": {
  7438. "position": "absolute",
  7439. "bottom": "50px",
  7440. "right": "50px",
  7441. "zIndex": "9999",
  7442. "backgroundColor": "#2268bc",
  7443. "color": "#fff",
  7444. "padding": "12px 20px",
  7445. "cursor": "pointer",
  7446. "borderRadius": "4px",
  7447. },
  7448. "innerHTML": "提交作业"
  7449. })
  7450. let aTool = ''
  7451. let _loading = document.createElement('div')
  7452. _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;"
  7453. // _loading.id = "";
  7454. let _lchild = document.createElement('div')
  7455. let _limg = document.createElement('img')
  7456. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7457. _limg.style = "width: 26px;margin-right: 10px;"
  7458. _lchild.appendChild(_limg)
  7459. let _lspan = document.createElement('span')
  7460. _lspan.innerHTML = "上传中..."
  7461. _lchild.appendChild(_lspan)
  7462. _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%);"
  7463. _loading.appendChild(_lchild)
  7464. let _box = $$('div', {
  7465. "style": {
  7466. "position": "relative",
  7467. "width": "100%",
  7468. "height": "100%",
  7469. },
  7470. })
  7471. _box.appendChild(_loading)
  7472. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7473. switch (str) {
  7474. case "whiteboard":
  7475. aTool = 1;
  7476. _iframe = $$("iframe", {
  7477. "frameborder": "no",
  7478. "border": "0",
  7479. "scrolling ": "no",
  7480. "style": {
  7481. "cssText": "border:0;width:100%;height:100%"
  7482. },
  7483. "src": "https://beta.iwb.cocorobo.cn/"
  7484. })
  7485. _box.appendChild(_iframe);
  7486. _box.appendChild(_jie);
  7487. _formdiv = new U.UF.UI.form(
  7488. "电子白板",
  7489. _box, {
  7490. "id": "whiteboard" + cid + stage + task + tool,
  7491. "style": {
  7492. "width": "90%",
  7493. "height": "90%",
  7494. "overflow": 'hidden'
  7495. },
  7496. "onresize": function () { }
  7497. }, {
  7498. closecallback: function () { }
  7499. }, {
  7500. "style": {
  7501. "height": "36px"
  7502. }
  7503. }).form; //创建窗体
  7504. _taskbar = {
  7505. "id": str + _formdiv.id,
  7506. "style": {
  7507. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7508. },
  7509. "name": "电子白板",
  7510. "forms": _formdiv,
  7511. "click": function () {
  7512. U.MD.D.I.openApplication(str, obj, info);
  7513. }
  7514. }
  7515. break;
  7516. case "mind":
  7517. aTool = 3;
  7518. _iframe = $$("iframe", {
  7519. "frameborder": "no",
  7520. "border": "0",
  7521. "scrolling ": "no",
  7522. "style": {
  7523. "cssText": "border:0;width:100%;height:100%"
  7524. },
  7525. "src": "/kityminder-editor/dist/index.html"
  7526. })
  7527. _box.appendChild(_iframe);
  7528. _box.appendChild(_jie);
  7529. _formdiv = new U.UF.UI.form(
  7530. "思维导图",
  7531. _box, { //"/jsmind/example/demo.html"
  7532. "id": "mind" + cid + stage + task + tool,
  7533. "style": {
  7534. "width": "90%",
  7535. "height": "90%",
  7536. "overflow": 'hidden'
  7537. },
  7538. "onresize": function () { }
  7539. }, {
  7540. closecallback: function () { }
  7541. }, {
  7542. "style": {
  7543. "height": "36px"
  7544. }
  7545. }).form; //创建窗体
  7546. _taskbar = {
  7547. "id": str + _formdiv.id,
  7548. "style": {
  7549. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7550. },
  7551. "name": "思维导图",
  7552. "forms": _formdiv,
  7553. "click": function () {
  7554. U.MD.D.I.openApplication(str, obj, info);
  7555. }
  7556. }
  7557. break;
  7558. case "MindMap":
  7559. aTool = 3;
  7560. _iframe = $$("iframe", {
  7561. "frameborder": "no",
  7562. "border": "0",
  7563. "scrolling ": "no",
  7564. "style": {
  7565. "cssText": "border:0;width:100%;height:100%"
  7566. },
  7567. "src": "//cloud.cocorobo.cn/mind/"
  7568. })
  7569. _box.appendChild(_iframe);
  7570. _box.appendChild(_jie);
  7571. _formdiv = new U.UF.UI.form(
  7572. "思维导图",
  7573. _box, { //"/jsmind/example/demo.html"
  7574. "id": "mind" + cid + stage + task + tool,
  7575. "style": {
  7576. "width": "90%",
  7577. "height": "90%",
  7578. "overflow": 'hidden'
  7579. },
  7580. "onresize": function () { }
  7581. }, {
  7582. closecallback: function () { }
  7583. }, {
  7584. "style": {
  7585. "height": "36px"
  7586. }
  7587. }).form; //创建窗体
  7588. _taskbar = {
  7589. "id": str + _formdiv.id,
  7590. "style": {
  7591. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7592. },
  7593. "name": "思维导图",
  7594. "forms": _formdiv,
  7595. "click": function () {
  7596. U.MD.D.I.openApplication(str, obj, info);
  7597. }
  7598. }
  7599. break;
  7600. case "doc":
  7601. aTool = 6;
  7602. _iframe = $$("iframe", {
  7603. "frameborder": "no",
  7604. "border": "0",
  7605. "scrolling ": "no",
  7606. "style": {
  7607. "cssText": "border:0;width:100%;height:100%"
  7608. },
  7609. "src": "/Office/Word/WordEditArea.htm"
  7610. })
  7611. _box.appendChild(_iframe);
  7612. _box.appendChild(_jie);
  7613. _formdiv = new U.UF.UI.form(
  7614. "协同文档",
  7615. _box, {
  7616. "id": "doc" + cid + stage + task + tool,
  7617. "style": {
  7618. "width": "90%",
  7619. "height": "90%",
  7620. "overflow": 'hidden'
  7621. },
  7622. "onresize": function () { }
  7623. }, {
  7624. closecallback: function () { }
  7625. }, {
  7626. "style": {
  7627. "height": "36px"
  7628. }
  7629. }).form; //创建窗体
  7630. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7631. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7632. })
  7633. _taskbar = {
  7634. "id": str + _formdiv.id,
  7635. "style": {
  7636. "backgroundImage": "url(/img/icon/doc.png)"
  7637. },
  7638. "name": "协同文档",
  7639. "forms": _formdiv,
  7640. "click": function () {
  7641. U.MD.D.I.openApplication(str, obj, info);
  7642. }
  7643. }
  7644. break;
  7645. case "mindNetwork": //好友打开
  7646. aTool = 7;
  7647. _iframe = $$("iframe", {
  7648. "webkitallowfullscreen": "",
  7649. "mozallowfullscreen": "",
  7650. "allowfullscreen": "",
  7651. "frameborder": "no",
  7652. "border": "0",
  7653. "scrolling ": "no",
  7654. "style": {
  7655. "cssText": "border:0; width:100%; height:100%;"
  7656. },
  7657. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7658. })
  7659. _box.appendChild(_iframe);
  7660. _box.appendChild(_jie);
  7661. _formdiv = new U.UF.UI.form(
  7662. "思维网格",
  7663. _box, {
  7664. "id": "mindNetwork" + cid + stage + task + tool,
  7665. "style": {
  7666. "width": "90%",
  7667. "height": "90%",
  7668. "overflow": 'hidden'
  7669. },
  7670. "onresize": function () { }
  7671. }, {
  7672. closecallback: function () { }
  7673. }, {
  7674. "style": {
  7675. "height": "36px"
  7676. }
  7677. }).form; //创建窗体
  7678. _taskbar = {
  7679. "id": str + _formdiv.id,
  7680. "style": {
  7681. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7682. },
  7683. "name": "思维网格",
  7684. "forms": _formdiv,
  7685. "click": function () {
  7686. U.MD.D.I.openApplication(str, obj, info);
  7687. }
  7688. }
  7689. break;
  7690. case "courseDesign":
  7691. _iframe = $$("iframe", {
  7692. "webkitallowfullscreen": "",
  7693. "mozallowfullscreen": "",
  7694. "allowfullscreen": "",
  7695. "frameborder": "no",
  7696. "border": "0",
  7697. "scrolling ": "no",
  7698. "style": {
  7699. "cssText": "border:0; width:100%; height:100%;"
  7700. },
  7701. "src": "/course-design-vue"
  7702. })
  7703. _box.appendChild(_iframe);
  7704. _box.appendChild(_jie);
  7705. _formdiv = new U.UF.UI.form(
  7706. "项目设计",
  7707. _box, {
  7708. "id": "courseDesign" + cid + stage + task + tool,
  7709. "style": {
  7710. "width": "90%",
  7711. "height": "90%",
  7712. "overflow": 'hidden'
  7713. },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, {
  7718. "style": {
  7719. "height": "36px"
  7720. }
  7721. }).form; //创建窗体
  7722. _taskbar = {
  7723. "id": str + _formdiv.id,
  7724. "style": {
  7725. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7726. },
  7727. "name": "项目设计",
  7728. "forms": _formdiv,
  7729. "click": function () {
  7730. U.MD.D.I.openApplication(str, obj, info);
  7731. }
  7732. }
  7733. break;
  7734. }
  7735. const script1 = document.createElement("script");
  7736. script1.type = "text/javascript";
  7737. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7738. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7739. const script2 = document.createElement("script");
  7740. script2.type = "text/javascript";
  7741. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7742. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7743. const script3 = document.createElement("script");
  7744. script3.type = "text/javascript";
  7745. script3.charset = "UTF-8";
  7746. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7747. const script4 = document.createElement("script");
  7748. script4.type = "text/javascript";
  7749. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7750. script4.src = window.origin + "/js/Common/jietu2E.js";
  7751. if (_iframe) {
  7752. if (str == 'doc') {
  7753. _iframe = _formdiv.querySelector('iframe')
  7754. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7755. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7756. _iframe.contentWindow.document.body.appendChild(script1);
  7757. _iframe.contentWindow.document.body.appendChild(script2);
  7758. // _iframe.contentWindow.document.body.appendChild(script3);
  7759. _iframe.contentWindow.document.body.appendChild(script4);
  7760. })
  7761. if (onloadListener) {
  7762. _iframe.contentDocument.location.reload()
  7763. } else {
  7764. _iframe.contentDocument.location.reload()
  7765. }
  7766. } else if (str == 'courseDesign') {
  7767. U.UF.DL.iframeLoad(_iframe, function () {
  7768. // _iframe.contentWindow.U.MD.O.W.load();
  7769. // _iframe.contentWindow.document.body.appendChild(script1);
  7770. _iframe.contentWindow.document.body.appendChild(script2);
  7771. _iframe.contentWindow.document.body.appendChild(script4);
  7772. })
  7773. } else if (str == 'mind') {
  7774. _iframe = _formdiv.querySelector('iframe')
  7775. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7776. //
  7777. _iframe.contentWindow.document.body.appendChild(script1);
  7778. _iframe.contentWindow.document.body.appendChild(script2);
  7779. _iframe.contentWindow.document.body.appendChild(script4);
  7780. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7781. })
  7782. if (onloadListener) {
  7783. _iframe.contentDocument.location.reload()
  7784. } else {
  7785. _iframe.contentDocument.location.reload()
  7786. }
  7787. } else if (str == 'whiteboard') {
  7788. _iframe = _formdiv.querySelector('iframe')
  7789. let onloadListener = _iframe.onload = () => {
  7790. _iframe.contentWindow.document.body.appendChild(script1);
  7791. _iframe.contentWindow.document.body.appendChild(script2);
  7792. _iframe.contentWindow.document.body.appendChild(script4);
  7793. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7794. };
  7795. // if (onloadListener) {
  7796. // try {
  7797. // _iframe.src += "?cocorobo="+new Date().getTime()
  7798. // _iframe.contentWindow.document.location.reload()
  7799. // } catch (error) {
  7800. // }
  7801. // } else {
  7802. // _iframe.contentDocument.location.reload()
  7803. // }
  7804. } else {
  7805. _iframe.onload = () => {
  7806. _iframe.contentWindow.document.body.appendChild(script1);
  7807. _iframe.contentWindow.document.body.appendChild(script2);
  7808. // _iframe.contentWindow.document.body.appendChild(script3);
  7809. _iframe.contentWindow.document.body.appendChild(script4);
  7810. };
  7811. }
  7812. _jie.onclick = async () => {
  7813. let text = ''
  7814. if (aTool == 1) {
  7815. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7816. } else if (aTool == 6) {
  7817. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7818. } else if (aTool == 3) {
  7819. text = await U.MD.D.I.getEditorContent(_iframe);
  7820. }
  7821. _loading.style.display = 'flex'
  7822. console.log(_loading);
  7823. var _ajs = _iframe.contentWindow.document.createElement("script");
  7824. _ajs.type = "text/javascript";
  7825. _ajs.innerHTML =
  7826. // 'console.log(' + _loading + ');\n' +
  7827. 'var _js = document.createElement("script");\n' +
  7828. '_js.type="text/javascript";\n' +
  7829. '_js.charset="UTF-8";\n' +
  7830. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7831. "_js.onload = function(){\n" +
  7832. ' var a = document.getElementsByTagName("img")\n' +
  7833. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7834. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7835. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7836. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7837. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7838. "beforeUpload_shishi(file," +
  7839. "'" +
  7840. _userid +
  7841. "'" +
  7842. ", " +
  7843. "'" +
  7844. _cid +
  7845. "'" +
  7846. ", " +
  7847. "'" +
  7848. _stage +
  7849. "'" +
  7850. ", " +
  7851. "'" +
  7852. _task +
  7853. "'" +
  7854. ", " +
  7855. "'" +
  7856. _tool +
  7857. "'" +
  7858. ", " +
  7859. "'" +
  7860. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7861. "'" +
  7862. ", " +
  7863. "'" +
  7864. aTool +
  7865. "'" +
  7866. ", " +
  7867. "`" +
  7868. text +
  7869. "`" +
  7870. ")\n" +
  7871. " });\n" +
  7872. "}\n" +
  7873. "document.head.appendChild(_js);\n";
  7874. _iframe.contentWindow.document.head.appendChild(_ajs);
  7875. }
  7876. }
  7877. //U.MD.D.I.openClick(str);
  7878. //如果有任务栏信息
  7879. // if (_taskbar) {
  7880. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7881. // }
  7882. }
  7883. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7884. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7885. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7886. _userid = student.userid, //登录用户id
  7887. _username = student.student //用户名字
  7888. let _iframe;
  7889. let _cid = cid,
  7890. _stage = stage,
  7891. _task = task,
  7892. _tool = tool;
  7893. var _jie = $$("div", {
  7894. "style": {
  7895. "position": "absolute",
  7896. "bottom": "50px",
  7897. "right": "50px",
  7898. "zIndex": "9999",
  7899. "backgroundColor": "#2268bc",
  7900. "color": "#fff",
  7901. "padding": "12px 20px",
  7902. "cursor": "pointer",
  7903. "borderRadius": "4px",
  7904. },
  7905. "innerHTML": "提交作业"
  7906. })
  7907. let aTool = ''
  7908. let _loading = document.createElement('div')
  7909. _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;"
  7910. // _loading.id = "";
  7911. let _lchild = document.createElement('div')
  7912. let _limg = document.createElement('img')
  7913. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7914. _limg.style = "width: 26px;margin-right: 10px;"
  7915. _lchild.appendChild(_limg)
  7916. let _lspan = document.createElement('span')
  7917. _lspan.innerHTML = "上传中..."
  7918. _lchild.appendChild(_lspan)
  7919. _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%);"
  7920. _loading.appendChild(_lchild)
  7921. var _box = $$('div', {
  7922. "style": {
  7923. "position": "relative",
  7924. "width": "100%",
  7925. "height": "100%",
  7926. },
  7927. })
  7928. _box.appendChild(_loading)
  7929. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7930. switch (str) {
  7931. case "whiteboard":
  7932. aTool = 1;
  7933. _iframe = $$("iframe", {
  7934. "frameborder": "no",
  7935. "border": "0",
  7936. "scrolling ": "no",
  7937. "style": {
  7938. "cssText": "border:0;width:100%;height:100%"
  7939. },
  7940. "src": "https://beta.iwb.cocorobo.cn/"
  7941. })
  7942. _box.appendChild(_iframe);
  7943. _box.appendChild(_jie);
  7944. _formdiv = new U.UF.UI.form(
  7945. "电子白板-" + _username,
  7946. _box, {
  7947. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7948. "style": {
  7949. "width": "90%",
  7950. "height": "90%",
  7951. "overflow": 'hidden'
  7952. },
  7953. "onresize": function () { }
  7954. }, {
  7955. closecallback: function () { }
  7956. }, {
  7957. "style": {
  7958. "height": "36px"
  7959. }
  7960. }).form; //创建窗体
  7961. _taskbar = {
  7962. "id": str + _formdiv.id,
  7963. "style": {
  7964. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7965. },
  7966. "name": "电子白板",
  7967. "forms": _formdiv,
  7968. "click": function () {
  7969. U.MD.D.I.openApplication(str, obj, info);
  7970. }
  7971. }
  7972. break;
  7973. case "mind":
  7974. aTool = 3;
  7975. _iframe = $$("iframe", {
  7976. "frameborder": "no",
  7977. "border": "0",
  7978. "scrolling ": "no",
  7979. "style": {
  7980. "cssText": "border:0;width:100%;height:100%"
  7981. },
  7982. "src": "/kityminder-editor/dist/index.html"
  7983. })
  7984. _box.appendChild(_iframe);
  7985. _box.appendChild(_jie);
  7986. _formdiv = new U.UF.UI.form(
  7987. "思维导图-" + _username,
  7988. _box, { //"/jsmind/example/demo.html"
  7989. "id": "mind" + cid + stage + task + tool + _userid,
  7990. "style": {
  7991. "width": "90%",
  7992. "height": "90%",
  7993. "overflow": 'hidden'
  7994. },
  7995. "onresize": function () { }
  7996. }, {
  7997. closecallback: function () { }
  7998. }, {
  7999. "style": {
  8000. "height": "36px"
  8001. }
  8002. }).form; //创建窗体
  8003. _taskbar = {
  8004. "id": str + _formdiv.id,
  8005. "style": {
  8006. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8007. },
  8008. "name": "思维导图",
  8009. "forms": _formdiv,
  8010. "click": function () {
  8011. U.MD.D.I.openApplication(str, obj, info);
  8012. }
  8013. }
  8014. break;
  8015. case "MindMap":
  8016. aTool = 3;
  8017. _iframe = $$("iframe", {
  8018. "frameborder": "no",
  8019. "border": "0",
  8020. "scrolling ": "no",
  8021. "style": {
  8022. "cssText": "border:0;width:100%;height:100%"
  8023. },
  8024. "src": "//cloud.cocorobo.cn/mind/"
  8025. })
  8026. _box.appendChild(_iframe);
  8027. _box.appendChild(_jie);
  8028. _formdiv = new U.UF.UI.form(
  8029. "思维导图-" + _username,
  8030. _box, { //"/jsmind/example/demo.html"
  8031. "id": "mind" + cid + stage + task + tool + _userid,
  8032. "style": {
  8033. "width": "90%",
  8034. "height": "90%",
  8035. "overflow": 'hidden'
  8036. },
  8037. "onresize": function () { }
  8038. }, {
  8039. closecallback: function () { }
  8040. }, {
  8041. "style": {
  8042. "height": "36px"
  8043. }
  8044. }).form; //创建窗体
  8045. _taskbar = {
  8046. "id": str + _formdiv.id,
  8047. "style": {
  8048. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8049. },
  8050. "name": "思维导图",
  8051. "forms": _formdiv,
  8052. "click": function () {
  8053. U.MD.D.I.openApplication(str, obj, info);
  8054. }
  8055. }
  8056. break;
  8057. case "doc":
  8058. aTool = 6;
  8059. _iframe = $$("iframe", {
  8060. "frameborder": "no",
  8061. "border": "0",
  8062. "scrolling ": "no",
  8063. "style": {
  8064. "cssText": "border:0;width:100%;height:100%"
  8065. },
  8066. "src": "/Office/Word/WordEditArea.htm"
  8067. })
  8068. _box.appendChild(_iframe);
  8069. _box.appendChild(_jie);
  8070. _formdiv = new U.UF.UI.form(
  8071. "协同文档-" + _username,
  8072. _box, {
  8073. "id": "doc" + cid + stage + task + tool + _userid,
  8074. "style": {
  8075. "width": "90%",
  8076. "height": "90%",
  8077. "overflow": 'hidden'
  8078. },
  8079. "onresize": function () { }
  8080. }, {
  8081. closecallback: function () { }
  8082. }, {
  8083. "style": {
  8084. "height": "36px"
  8085. }
  8086. }).form; //创建窗体
  8087. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8088. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8089. })
  8090. _taskbar = {
  8091. "id": str + _formdiv.id,
  8092. "style": {
  8093. "backgroundImage": "url(/img/icon/doc.png)"
  8094. },
  8095. "name": "协同文档",
  8096. "forms": _formdiv,
  8097. "click": function () {
  8098. U.MD.D.I.openApplication(str, obj, info);
  8099. }
  8100. }
  8101. break;
  8102. case "mindNetwork": //好友打开
  8103. aTool = 7;
  8104. _iframe = $$("iframe", {
  8105. "webkitallowfullscreen": "",
  8106. "mozallowfullscreen": "",
  8107. "allowfullscreen": "",
  8108. "frameborder": "no",
  8109. "border": "0",
  8110. "scrolling ": "no",
  8111. "style": {
  8112. "cssText": "border:0; width:100%; height:100%;"
  8113. },
  8114. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8115. })
  8116. _box.appendChild(_iframe);
  8117. _box.appendChild(_jie);
  8118. _formdiv = new U.UF.UI.form(
  8119. "思维网格-" + _username,
  8120. _box, {
  8121. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8122. "style": {
  8123. "width": "90%",
  8124. "height": "90%",
  8125. "overflow": 'hidden'
  8126. },
  8127. "onresize": function () { }
  8128. }, {
  8129. closecallback: function () { }
  8130. }, {
  8131. "style": {
  8132. "height": "36px"
  8133. }
  8134. }).form; //创建窗体
  8135. _taskbar = {
  8136. "id": str + _formdiv.id,
  8137. "style": {
  8138. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8139. },
  8140. "name": "思维网格",
  8141. "forms": _formdiv,
  8142. "click": function () {
  8143. U.MD.D.I.openApplication(str, obj, info);
  8144. }
  8145. }
  8146. break;
  8147. case "courseDesign":
  8148. _iframe = $$("iframe", {
  8149. "webkitallowfullscreen": "",
  8150. "mozallowfullscreen": "",
  8151. "allowfullscreen": "",
  8152. "frameborder": "no",
  8153. "border": "0",
  8154. "scrolling ": "no",
  8155. "style": {
  8156. "cssText": "border:0; width:100%; height:100%;"
  8157. },
  8158. "src": "/course-design-vue"
  8159. })
  8160. _box.appendChild(_iframe);
  8161. _box.appendChild(_jie);
  8162. _formdiv = new U.UF.UI.form(
  8163. "项目设计-" + _username,
  8164. _box, {
  8165. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8166. "style": {
  8167. "width": "90%",
  8168. "height": "90%",
  8169. "overflow": 'hidden'
  8170. },
  8171. "onresize": function () { }
  8172. }, {
  8173. closecallback: function () { }
  8174. }, {
  8175. "style": {
  8176. "height": "36px"
  8177. }
  8178. }).form; //创建窗体
  8179. _taskbar = {
  8180. "id": str + _formdiv.id,
  8181. "style": {
  8182. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8183. },
  8184. "name": "项目设计",
  8185. "forms": _formdiv,
  8186. "click": function () {
  8187. U.MD.D.I.openApplication(str, obj, info);
  8188. }
  8189. }
  8190. break;
  8191. }
  8192. const script1 = document.createElement("script");
  8193. script1.type = "text/javascript";
  8194. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8195. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8196. const script2 = document.createElement("script");
  8197. script2.type = "text/javascript";
  8198. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8199. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8200. const script3 = document.createElement("script");
  8201. script3.type = "text/javascript";
  8202. script3.charset = "UTF-8";
  8203. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8204. const script4 = document.createElement("script");
  8205. script4.type = "text/javascript";
  8206. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8207. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8208. if (_iframe) {
  8209. if (str == 'doc') {
  8210. _iframe = _formdiv.querySelector('iframe')
  8211. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8212. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8213. _iframe.contentWindow.document.body.appendChild(script1);
  8214. _iframe.contentWindow.document.body.appendChild(script2);
  8215. // _iframe.contentWindow.document.body.appendChild(script3);
  8216. _iframe.contentWindow.document.body.appendChild(script4);
  8217. })
  8218. if (onloadListener) {
  8219. _iframe.contentDocument.location.reload()
  8220. } else {
  8221. _iframe.contentDocument.location.reload()
  8222. }
  8223. } else if (str == 'courseDesign') {
  8224. U.UF.DL.iframeLoad(_iframe, function () {
  8225. // _iframe.contentWindow.U.MD.O.W.load();
  8226. // _iframe.contentWindow.document.body.appendChild(script1);
  8227. _iframe.contentWindow.document.body.appendChild(script2);
  8228. _iframe.contentWindow.document.body.appendChild(script4);
  8229. })
  8230. } else if (str == 'mind') {
  8231. _iframe = _formdiv.querySelector('iframe')
  8232. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8233. //
  8234. _iframe.contentWindow.document.body.appendChild(script1);
  8235. _iframe.contentWindow.document.body.appendChild(script2);
  8236. _iframe.contentWindow.document.body.appendChild(script4);
  8237. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8238. })
  8239. if (onloadListener) {
  8240. _iframe.contentDocument.location.reload()
  8241. } else {
  8242. _iframe.contentDocument.location.reload()
  8243. }
  8244. } else if (str == 'whiteboard') {
  8245. _iframe = _formdiv.querySelector('iframe')
  8246. let onloadListener = _iframe.onload = () => {
  8247. _iframe.contentWindow.document.body.appendChild(script1);
  8248. _iframe.contentWindow.document.body.appendChild(script2);
  8249. _iframe.contentWindow.document.body.appendChild(script4);
  8250. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8251. };
  8252. // if (onloadListener) {
  8253. // try {
  8254. // _iframe.src += "?cocorobo="+new Date().getTime()
  8255. // _iframe.contentWindow.document.location.reload()
  8256. // } catch (error) {
  8257. // }
  8258. // } else {
  8259. // _iframe.contentDocument.location.reload()
  8260. // }
  8261. } else {
  8262. _iframe.onload = () => {
  8263. _iframe.contentWindow.document.body.appendChild(script1);
  8264. _iframe.contentWindow.document.body.appendChild(script2);
  8265. // _iframe.contentWindow.document.body.appendChild(script3);
  8266. _iframe.contentWindow.document.body.appendChild(script4);
  8267. };
  8268. }
  8269. _jie.onclick = async () => {
  8270. let text = ''
  8271. if (aTool == 1) {
  8272. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8273. } else if (aTool == 6) {
  8274. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8275. } else if (aTool == 3) {
  8276. text = await U.MD.D.I.getEditorContent(_iframe);
  8277. }
  8278. _loading.style.display = 'flex'
  8279. console.log(_loading);
  8280. var _ajs = _iframe.contentWindow.document.createElement("script");
  8281. _ajs.type = "text/javascript";
  8282. _ajs.innerHTML =
  8283. // 'console.log(' + _loading + ');\n' +
  8284. 'var _js = document.createElement("script");\n' +
  8285. '_js.type="text/javascript";\n' +
  8286. '_js.charset="UTF-8";\n' +
  8287. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8288. "_js.onload = function(){\n" +
  8289. ' var a = document.getElementsByTagName("img")\n' +
  8290. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8291. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8292. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8293. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8294. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8295. "beforeUpload_shishi(file," +
  8296. "'" +
  8297. _userid +
  8298. "'" +
  8299. ", " +
  8300. "'" +
  8301. _cid +
  8302. "'" +
  8303. ", " +
  8304. "'" +
  8305. _stage +
  8306. "'" +
  8307. ", " +
  8308. "'" +
  8309. _task +
  8310. "'" +
  8311. ", " +
  8312. "'" +
  8313. _tool +
  8314. "'" +
  8315. ", " +
  8316. "'" +
  8317. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8318. "'" +
  8319. ", " +
  8320. "'" +
  8321. aTool +
  8322. "'" +
  8323. ", " +
  8324. "`" +
  8325. text +
  8326. "`" +
  8327. ")\n" +
  8328. " });\n" +
  8329. "}\n" +
  8330. "document.head.appendChild(_js);\n";
  8331. _iframe.contentWindow.document.head.appendChild(_ajs);
  8332. }
  8333. }
  8334. }
  8335. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8336. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8337. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8338. _userid = student.userid, //登录用户id
  8339. _username = student.student //用户名字
  8340. let _iframe;
  8341. let _cid = cid,
  8342. _stage = stage,
  8343. _task = task,
  8344. _tool = tool;
  8345. var _jie = $$("div", {
  8346. "style": {
  8347. "position": "absolute",
  8348. "bottom": "50px",
  8349. "right": "50px",
  8350. "zIndex": "9999",
  8351. "backgroundColor": "#2268bc",
  8352. "color": "#fff",
  8353. "padding": "12px 20px",
  8354. "cursor": "pointer",
  8355. "borderRadius": "4px",
  8356. },
  8357. "innerHTML": "提交作业"
  8358. })
  8359. let aTool = ''
  8360. let _loading = document.createElement('div')
  8361. _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;"
  8362. // _loading.id = "";
  8363. let _lchild = document.createElement('div')
  8364. let _limg = document.createElement('img')
  8365. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8366. _limg.style = "width: 26px;margin-right: 10px;"
  8367. _lchild.appendChild(_limg)
  8368. let _lspan = document.createElement('span')
  8369. _lspan.innerHTML = "上传中..."
  8370. _lchild.appendChild(_lspan)
  8371. _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%);"
  8372. _loading.appendChild(_lchild)
  8373. var _box = $$('div', {
  8374. "style": {
  8375. "position": "relative",
  8376. "width": "100%",
  8377. "height": "100%",
  8378. },
  8379. })
  8380. _box.appendChild(_loading)
  8381. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8382. switch (str) {
  8383. case "whiteboard":
  8384. aTool = 1;
  8385. _iframe = $$("iframe", {
  8386. "frameborder": "no",
  8387. "border": "0",
  8388. "scrolling ": "no",
  8389. "style": {
  8390. "cssText": "border:0;width:100%;height:100%"
  8391. },
  8392. "src": "https://beta.iwb.cocorobo.cn/"
  8393. })
  8394. _box.appendChild(_iframe);
  8395. _box.appendChild(_jie);
  8396. _formdiv = new U.UF.UI.form(
  8397. "电子白板-" + _username,
  8398. _box, {
  8399. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8400. "style": {
  8401. "width": "90%",
  8402. "height": "90%",
  8403. "overflow": 'hidden'
  8404. },
  8405. "onresize": function () { }
  8406. }, {
  8407. closecallback: function () { }
  8408. }, {
  8409. "style": {
  8410. "height": "36px"
  8411. }
  8412. }).form; //创建窗体
  8413. _taskbar = {
  8414. "id": str + _formdiv.id,
  8415. "style": {
  8416. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8417. },
  8418. "name": "电子白板",
  8419. "forms": _formdiv,
  8420. "click": function () {
  8421. U.MD.D.I.openApplication(str, obj, info);
  8422. }
  8423. }
  8424. break;
  8425. case "mind":
  8426. aTool = 3;
  8427. _iframe = $$("iframe", {
  8428. "frameborder": "no",
  8429. "border": "0",
  8430. "scrolling ": "no",
  8431. "style": {
  8432. "cssText": "border:0;width:100%;height:100%"
  8433. },
  8434. "src": "/kityminder-editor/dist/index.html"
  8435. })
  8436. _box.appendChild(_iframe);
  8437. _box.appendChild(_jie);
  8438. _formdiv = new U.UF.UI.form(
  8439. "思维导图-" + _username,
  8440. _box, { //"/jsmind/example/demo.html"
  8441. "id": "mind" + cid + stage + task + tool + _userid,
  8442. "style": {
  8443. "width": "90%",
  8444. "height": "90%",
  8445. "overflow": 'hidden'
  8446. },
  8447. "onresize": function () { }
  8448. }, {
  8449. closecallback: function () { }
  8450. }, {
  8451. "style": {
  8452. "height": "36px"
  8453. }
  8454. }).form; //创建窗体
  8455. _taskbar = {
  8456. "id": str + _formdiv.id,
  8457. "style": {
  8458. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8459. },
  8460. "name": "思维导图",
  8461. "forms": _formdiv,
  8462. "click": function () {
  8463. U.MD.D.I.openApplication(str, obj, info);
  8464. }
  8465. }
  8466. break;
  8467. case "MindMap":
  8468. aTool = 3;
  8469. _iframe = $$("iframe", {
  8470. "frameborder": "no",
  8471. "border": "0",
  8472. "scrolling ": "no",
  8473. "style": {
  8474. "cssText": "border:0;width:100%;height:100%"
  8475. },
  8476. "src": "//cloud.cocorobo.cn/mind/"
  8477. })
  8478. _box.appendChild(_iframe);
  8479. _box.appendChild(_jie);
  8480. _formdiv = new U.UF.UI.form(
  8481. "思维导图-" + _username,
  8482. _box, { //"/jsmind/example/demo.html"
  8483. "id": "mind" + cid + stage + task + tool + _userid,
  8484. "style": {
  8485. "width": "90%",
  8486. "height": "90%",
  8487. "overflow": 'hidden'
  8488. },
  8489. "onresize": function () { }
  8490. }, {
  8491. closecallback: function () { }
  8492. }, {
  8493. "style": {
  8494. "height": "36px"
  8495. }
  8496. }).form; //创建窗体
  8497. _taskbar = {
  8498. "id": str + _formdiv.id,
  8499. "style": {
  8500. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8501. },
  8502. "name": "思维导图",
  8503. "forms": _formdiv,
  8504. "click": function () {
  8505. U.MD.D.I.openApplication(str, obj, info);
  8506. }
  8507. }
  8508. break;
  8509. case "doc":
  8510. aTool = 6;
  8511. _iframe = $$("iframe", {
  8512. "frameborder": "no",
  8513. "border": "0",
  8514. "scrolling ": "no",
  8515. "style": {
  8516. "cssText": "border:0;width:100%;height:100%"
  8517. },
  8518. "src": "/Office/Word/WordEditArea.htm"
  8519. })
  8520. _box.appendChild(_iframe);
  8521. _box.appendChild(_jie);
  8522. _formdiv = new U.UF.UI.form(
  8523. "协同文档-" + _username,
  8524. _box, {
  8525. "id": "doc" + cid + stage + task + tool + _userid,
  8526. "style": {
  8527. "width": "90%",
  8528. "height": "90%",
  8529. "overflow": 'hidden'
  8530. },
  8531. "onresize": function () { }
  8532. }, {
  8533. closecallback: function () { }
  8534. }, {
  8535. "style": {
  8536. "height": "36px"
  8537. }
  8538. }).form; //创建窗体
  8539. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8540. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8541. })
  8542. _taskbar = {
  8543. "id": str + _formdiv.id,
  8544. "style": {
  8545. "backgroundImage": "url(/img/icon/doc.png)"
  8546. },
  8547. "name": "协同文档",
  8548. "forms": _formdiv,
  8549. "click": function () {
  8550. U.MD.D.I.openApplication(str, obj, info);
  8551. }
  8552. }
  8553. break;
  8554. case "mindNetwork": //好友打开
  8555. aTool = 7;
  8556. _iframe = $$("iframe", {
  8557. "webkitallowfullscreen": "",
  8558. "mozallowfullscreen": "",
  8559. "allowfullscreen": "",
  8560. "frameborder": "no",
  8561. "border": "0",
  8562. "scrolling ": "no",
  8563. "style": {
  8564. "cssText": "border:0; width:100%; height:100%;"
  8565. },
  8566. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8567. })
  8568. _box.appendChild(_iframe);
  8569. _box.appendChild(_jie);
  8570. _formdiv = new U.UF.UI.form(
  8571. "思维网格-" + _username,
  8572. _box, {
  8573. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8574. "style": {
  8575. "width": "90%",
  8576. "height": "90%",
  8577. "overflow": 'hidden'
  8578. },
  8579. "onresize": function () { }
  8580. }, {
  8581. closecallback: function () { }
  8582. }, {
  8583. "style": {
  8584. "height": "36px"
  8585. }
  8586. }).form; //创建窗体
  8587. _taskbar = {
  8588. "id": str + _formdiv.id,
  8589. "style": {
  8590. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8591. },
  8592. "name": "思维网格",
  8593. "forms": _formdiv,
  8594. "click": function () {
  8595. U.MD.D.I.openApplication(str, obj, info);
  8596. }
  8597. }
  8598. break;
  8599. case "courseDesign":
  8600. _iframe = $$("iframe", {
  8601. "webkitallowfullscreen": "",
  8602. "mozallowfullscreen": "",
  8603. "allowfullscreen": "",
  8604. "frameborder": "no",
  8605. "border": "0",
  8606. "scrolling ": "no",
  8607. "style": {
  8608. "cssText": "border:0; width:100%; height:100%;"
  8609. },
  8610. "src": "/course-design-vue"
  8611. })
  8612. _box.appendChild(_iframe);
  8613. _box.appendChild(_jie);
  8614. _formdiv = new U.UF.UI.form(
  8615. "项目设计-" + _username,
  8616. _box, {
  8617. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8618. "style": {
  8619. "width": "90%",
  8620. "height": "90%",
  8621. "overflow": 'hidden'
  8622. },
  8623. "onresize": function () { }
  8624. }, {
  8625. closecallback: function () { }
  8626. }, {
  8627. "style": {
  8628. "height": "36px"
  8629. }
  8630. }).form; //创建窗体
  8631. _taskbar = {
  8632. "id": str + _formdiv.id,
  8633. "style": {
  8634. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8635. },
  8636. "name": "项目设计",
  8637. "forms": _formdiv,
  8638. "click": function () {
  8639. U.MD.D.I.openApplication(str, obj, info);
  8640. }
  8641. }
  8642. break;
  8643. }
  8644. const script1 = document.createElement("script");
  8645. script1.type = "text/javascript";
  8646. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8647. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8648. const script2 = document.createElement("script");
  8649. script2.type = "text/javascript";
  8650. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8651. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8652. const script3 = document.createElement("script");
  8653. script3.type = "text/javascript";
  8654. script3.charset = "UTF-8";
  8655. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8656. const script4 = document.createElement("script");
  8657. script4.type = "text/javascript";
  8658. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8659. script4.src = window.origin + "/js/Common/jietu2E.js";
  8660. if (_iframe) {
  8661. if (str == 'doc') {
  8662. _iframe = _formdiv.querySelector('iframe')
  8663. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8664. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8665. _iframe.contentWindow.document.body.appendChild(script1);
  8666. _iframe.contentWindow.document.body.appendChild(script2);
  8667. // _iframe.contentWindow.document.body.appendChild(script3);
  8668. _iframe.contentWindow.document.body.appendChild(script4);
  8669. })
  8670. if (onloadListener) {
  8671. _iframe.contentDocument.location.reload()
  8672. } else {
  8673. _iframe.contentDocument.location.reload()
  8674. }
  8675. } else if (str == 'courseDesign') {
  8676. U.UF.DL.iframeLoad(_iframe, function () {
  8677. // _iframe.contentWindow.U.MD.O.W.load();
  8678. // _iframe.contentWindow.document.body.appendChild(script1);
  8679. _iframe.contentWindow.document.body.appendChild(script2);
  8680. _iframe.contentWindow.document.body.appendChild(script4);
  8681. })
  8682. } else if (str == 'mind') {
  8683. _iframe = _formdiv.querySelector('iframe')
  8684. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8685. //
  8686. _iframe.contentWindow.document.body.appendChild(script1);
  8687. _iframe.contentWindow.document.body.appendChild(script2);
  8688. _iframe.contentWindow.document.body.appendChild(script4);
  8689. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8690. })
  8691. if (onloadListener) {
  8692. _iframe.contentDocument.location.reload()
  8693. } else {
  8694. _iframe.contentDocument.location.reload()
  8695. }
  8696. } else if (str == 'whiteboard') {
  8697. _iframe = _formdiv.querySelector('iframe')
  8698. let onloadListener = _iframe.onload = () => {
  8699. _iframe.contentWindow.document.body.appendChild(script1);
  8700. _iframe.contentWindow.document.body.appendChild(script2);
  8701. _iframe.contentWindow.document.body.appendChild(script4);
  8702. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8703. };
  8704. // if (onloadListener) {
  8705. // try {
  8706. // _iframe.src += "?cocorobo="+new Date().getTime()
  8707. // _iframe.contentWindow.document.location.reload()
  8708. // } catch (error) {
  8709. // }
  8710. // } else {
  8711. // _iframe.contentDocument.location.reload()
  8712. // }
  8713. } else {
  8714. _iframe.onload = () => {
  8715. _iframe.contentWindow.document.body.appendChild(script1);
  8716. _iframe.contentWindow.document.body.appendChild(script2);
  8717. // _iframe.contentWindow.document.body.appendChild(script3);
  8718. _iframe.contentWindow.document.body.appendChild(script4);
  8719. };
  8720. }
  8721. _jie.onclick = async () => {
  8722. let text = ''
  8723. if (aTool == 1) {
  8724. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8725. } else if (aTool == 6) {
  8726. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8727. } else if (aTool == 3) {
  8728. text = await U.MD.D.I.getEditorContent(_iframe);
  8729. }
  8730. _loading.style.display = 'flex'
  8731. console.log(_loading);
  8732. var _ajs = _iframe.contentWindow.document.createElement("script");
  8733. _ajs.type = "text/javascript";
  8734. _ajs.innerHTML =
  8735. // 'console.log(' + _loading + ');\n' +
  8736. 'var _js = document.createElement("script");\n' +
  8737. '_js.type="text/javascript";\n' +
  8738. '_js.charset="UTF-8";\n' +
  8739. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8740. "_js.onload = function(){\n" +
  8741. ' var a = document.getElementsByTagName("img")\n' +
  8742. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8743. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8744. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8745. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8746. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8747. "beforeUpload_shishi(file," +
  8748. "'" +
  8749. _userid +
  8750. "'" +
  8751. ", " +
  8752. "'" +
  8753. _cid +
  8754. "'" +
  8755. ", " +
  8756. "'" +
  8757. _stage +
  8758. "'" +
  8759. ", " +
  8760. "'" +
  8761. _task +
  8762. "'" +
  8763. ", " +
  8764. "'" +
  8765. _tool +
  8766. "'" +
  8767. ", " +
  8768. "'" +
  8769. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8770. "'" +
  8771. ", " +
  8772. "'" +
  8773. aTool +
  8774. "'" +
  8775. ", " +
  8776. "`" +
  8777. text +
  8778. "`" +
  8779. ")\n" +
  8780. " });\n" +
  8781. "}\n" +
  8782. "document.head.appendChild(_js);\n";
  8783. _iframe.contentWindow.document.head.appendChild(_ajs);
  8784. }
  8785. }
  8786. }
  8787. U.MD.D.I.getEditorContent = function (iframe) {
  8788. return new Promise((resolve, reject) => {
  8789. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8790. console.log(content);
  8791. resolve(content)
  8792. });
  8793. });
  8794. }
  8795. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8796. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8797. // if (res.value[0].length > 0) {
  8798. // // resolve(res.value[0][0].text);
  8799. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8800. // $(fileInput).val('');
  8801. // });
  8802. // }
  8803. // }, [], { "type": "GET", "withCredentials": true });
  8804. var xmlhttp;
  8805. var Mac, Sn, DeviceId
  8806. if (window.XMLHttpRequest) {
  8807. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8808. xmlhttp = new XMLHttpRequest();
  8809. } else {
  8810. // IE6, IE5 浏览器执行代码
  8811. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8812. }
  8813. xmlhttp.onreadystatechange = function () {
  8814. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8815. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8816. // resolve(res.value[0][0].text);
  8817. if (type == '2') {
  8818. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8819. } else if (type == '3') {
  8820. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8821. }
  8822. } else {
  8823. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8824. }
  8825. }
  8826. }
  8827. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8828. xmlhttp.send();
  8829. }
  8830. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8831. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8832. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8833. _userinfo = US.userInfo, //登录用户信息
  8834. _userid = US.userInfo.userid //登录用户id
  8835. let _iframe;
  8836. let _cid = cid,
  8837. _stage = stage,
  8838. _task = task,
  8839. _tool = tool;
  8840. var _jie = $$("div", {
  8841. "style": {
  8842. "position": "absolute",
  8843. "bottom": "50px",
  8844. "right": "50px",
  8845. "zIndex": "9999",
  8846. "backgroundColor": "#2268bc",
  8847. "color": "#fff",
  8848. "padding": "12px 20px",
  8849. "cursor": "pointer",
  8850. "borderRadius": "4px",
  8851. },
  8852. "innerHTML": "确认并提交"
  8853. })
  8854. let aTool = ''
  8855. let _loading = document.createElement('div')
  8856. _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;"
  8857. // _loading.id = "";
  8858. let _lchild = document.createElement('div')
  8859. let _limg = document.createElement('img')
  8860. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8861. _limg.style = "width: 26px;margin-right: 10px;"
  8862. _lchild.appendChild(_limg)
  8863. let _lspan = document.createElement('span')
  8864. _lspan.innerHTML = "上传中..."
  8865. _lchild.appendChild(_lspan)
  8866. _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%);"
  8867. _loading.appendChild(_lchild)
  8868. var _box = $$('div', {
  8869. "style": {
  8870. "position": "relative",
  8871. "width": "100%",
  8872. "height": "100%",
  8873. },
  8874. })
  8875. _box.appendChild(_loading)
  8876. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8877. switch (str) {
  8878. case "whiteboard":
  8879. aTool = 1;
  8880. _iframe = $$("iframe", {
  8881. "frameborder": "no",
  8882. "border": "0",
  8883. "scrolling ": "no",
  8884. "style": {
  8885. "cssText": "border:0;width:100%;height:100%"
  8886. },
  8887. "src": "https://beta.iwb.cocorobo.cn/"
  8888. })
  8889. _box.appendChild(_iframe);
  8890. _box.appendChild(_jie);
  8891. _formdiv = new U.UF.UI.form(
  8892. "电子白板",
  8893. _box, {
  8894. "id": "whiteboards" + cid + stage + task + tool,
  8895. "style": {
  8896. "width": "90%",
  8897. "height": "90%",
  8898. "overflow": 'hidden'
  8899. },
  8900. "onresize": function () { }
  8901. }, {
  8902. closecallback: function () { }
  8903. }, {
  8904. "style": {
  8905. "height": "36px"
  8906. }
  8907. }).form; //创建窗体
  8908. _taskbar = {
  8909. "id": str + _formdiv.id,
  8910. "style": {
  8911. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8912. },
  8913. "name": "电子白板",
  8914. "forms": _formdiv,
  8915. "click": function () {
  8916. U.MD.D.I.openApplication(str, obj, info);
  8917. }
  8918. }
  8919. break;
  8920. case "mind":
  8921. aTool = 3;
  8922. _iframe = $$("iframe", {
  8923. "frameborder": "no",
  8924. "border": "0",
  8925. "scrolling ": "no",
  8926. "style": {
  8927. "cssText": "border:0;width:100%;height:100%"
  8928. },
  8929. "src": "/kityminder-editor/dist/index.html"
  8930. });
  8931. _box.appendChild(_iframe);
  8932. _box.appendChild(_jie);
  8933. _formdiv = new U.UF.UI.form(
  8934. "思维导图",
  8935. _box, { //"/jsmind/example/demo.html"
  8936. "id": "minds" + cid + stage + task + tool,
  8937. "style": {
  8938. "width": "90%",
  8939. "height": "90%",
  8940. "overflow": 'hidden'
  8941. },
  8942. "onresize": function () { }
  8943. }, {
  8944. closecallback: function () { }
  8945. }, {
  8946. "style": {
  8947. "height": "36px"
  8948. }
  8949. }).form; //创建窗体
  8950. _taskbar = {
  8951. "id": str + _formdiv.id,
  8952. "style": {
  8953. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8954. },
  8955. "name": "思维导图",
  8956. "forms": _formdiv,
  8957. "click": function () {
  8958. U.MD.D.I.openApplication(str, obj, info);
  8959. }
  8960. }
  8961. break;
  8962. case "doc":
  8963. aTool = 6;
  8964. _iframe = $$("iframe", {
  8965. "frameborder": "no",
  8966. "border": "0",
  8967. "scrolling ": "no",
  8968. "style": {
  8969. "cssText": "border:0;width:100%;height:100%"
  8970. },
  8971. "src": "/Office/Word/WordEditArea.htm"
  8972. })
  8973. _box.appendChild(_iframe);
  8974. _box.appendChild(_jie);
  8975. _formdiv = new U.UF.UI.form(
  8976. "协同文档",
  8977. _box, {
  8978. "id": "docs" + cid + stage + task + tool,
  8979. "style": {
  8980. "width": "90%",
  8981. "height": "90%",
  8982. "overflow": 'hidden'
  8983. },
  8984. "onresize": function () { }
  8985. }, {
  8986. closecallback: function () { }
  8987. }, {
  8988. "style": {
  8989. "height": "36px"
  8990. }
  8991. }).form; //创建窗体
  8992. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8993. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8994. })
  8995. _taskbar = {
  8996. "id": str + _formdiv.id,
  8997. "style": {
  8998. "backgroundImage": "url(/img/icon/doc.png)"
  8999. },
  9000. "name": "协同文档",
  9001. "forms": _formdiv,
  9002. "click": function () {
  9003. U.MD.D.I.openApplication(str, obj, info);
  9004. }
  9005. }
  9006. break;
  9007. }
  9008. const script1 = document.createElement("script");
  9009. script1.type = "text/javascript";
  9010. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9011. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9012. const script2 = document.createElement("script");
  9013. script2.type = "text/javascript";
  9014. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9015. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9016. const script3 = document.createElement("script");
  9017. script3.type = "text/javascript";
  9018. script3.charset = "UTF-8";
  9019. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9020. const script4 = document.createElement("script");
  9021. script4.type = "text/javascript";
  9022. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9023. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9024. if (_iframe) {
  9025. if (str == 'doc') {
  9026. _iframe = _formdiv.querySelector('iframe')
  9027. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9028. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9029. _iframe.contentWindow.document.body.appendChild(script1);
  9030. _iframe.contentWindow.document.body.appendChild(script2);
  9031. // _iframe.contentWindow.document.body.appendChild(script3);
  9032. _iframe.contentWindow.document.body.appendChild(script4);
  9033. })
  9034. if (onloadListener) {
  9035. _iframe.contentDocument.location.reload()
  9036. } else {
  9037. _iframe.contentDocument.location.reload()
  9038. }
  9039. } else if (str == 'mind') {
  9040. _iframe = _formdiv.querySelector('iframe')
  9041. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9042. _iframe.contentWindow.document.body.appendChild(script1);
  9043. _iframe.contentWindow.document.body.appendChild(script2);
  9044. _iframe.contentWindow.document.body.appendChild(script4);
  9045. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9046. })
  9047. if (onloadListener) {
  9048. _iframe.contentDocument.location.reload()
  9049. } else {
  9050. _iframe.contentDocument.location.reload()
  9051. }
  9052. } else {
  9053. _iframe.onload = () => {
  9054. _iframe.contentWindow.document.body.appendChild(script1);
  9055. _iframe.contentWindow.document.body.appendChild(script2);
  9056. // _iframe.contentWindow.document.body.appendChild(script3);
  9057. _iframe.contentWindow.document.body.appendChild(script4);
  9058. };
  9059. }
  9060. _jie.onclick = async () => {
  9061. let text = ''
  9062. if (aTool == 6) {
  9063. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9064. } else if (aTool == 3) {
  9065. text = await U.MD.D.I.getEditorContent(_iframe);
  9066. }
  9067. _loading.style.display = 'flex'
  9068. console.log(_loading);
  9069. var _ajs = _iframe.contentWindow.document.createElement("script");
  9070. _ajs.type = "text/javascript";
  9071. _ajs.innerHTML =
  9072. // 'console.log(' + _loading + ');\n' +
  9073. 'var _js = document.createElement("script");\n' +
  9074. '_js.type="text/javascript";\n' +
  9075. '_js.charset="UTF-8";\n' +
  9076. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9077. "_js.onload = function(){\n" +
  9078. ' var a = document.getElementsByTagName("img")\n' +
  9079. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9080. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9081. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9082. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9083. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9084. "beforeUpload_shishi(file," +
  9085. "'" +
  9086. _userid +
  9087. "'" +
  9088. ", " +
  9089. "'" +
  9090. _cid +
  9091. "'" +
  9092. ", " +
  9093. "'" +
  9094. _stage +
  9095. "'" +
  9096. ", " +
  9097. "'" +
  9098. _task +
  9099. "'" +
  9100. ", " +
  9101. "'" +
  9102. _tool +
  9103. "'" +
  9104. ", " +
  9105. "'" +
  9106. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9107. "'" +
  9108. ", " +
  9109. "'" +
  9110. aTool +
  9111. "'" +
  9112. ", " +
  9113. "`" +
  9114. text +
  9115. "`" +
  9116. ")\n" +
  9117. " });\n" +
  9118. "}\n" +
  9119. "document.head.appendChild(_js);\n";
  9120. _iframe.contentWindow.document.head.appendChild(_ajs);
  9121. }
  9122. }
  9123. //U.MD.D.I.openClick(str);
  9124. //如果有任务栏信息
  9125. // if (_taskbar) {
  9126. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9127. // }
  9128. }
  9129. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9130. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9131. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9132. _userinfo = US.userInfo, //登录用户信息
  9133. _userid = US.userInfo.userid //登录用户id
  9134. let _iframe;
  9135. let _cid = cid,
  9136. _stage = stage,
  9137. _task = task,
  9138. _tool = tool;
  9139. var _jie = $$("div", {
  9140. "style": {
  9141. "position": "absolute",
  9142. "bottom": "50px",
  9143. "right": "50px",
  9144. "zIndex": "9999",
  9145. "backgroundColor": "#2268bc",
  9146. "color": "#fff",
  9147. "padding": "12px 20px",
  9148. "cursor": "pointer",
  9149. "borderRadius": "4px",
  9150. },
  9151. "innerHTML": "确认并提交"
  9152. })
  9153. let aTool = ''
  9154. let _loading = document.createElement('div')
  9155. _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;"
  9156. // _loading.id = "";
  9157. let _lchild = document.createElement('div')
  9158. let _limg = document.createElement('img')
  9159. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9160. _limg.style = "width: 26px;margin-right: 10px;"
  9161. _lchild.appendChild(_limg)
  9162. let _lspan = document.createElement('span')
  9163. _lspan.innerHTML = "上传中..."
  9164. _lchild.appendChild(_lspan)
  9165. _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%);"
  9166. _loading.appendChild(_lchild)
  9167. var _box = $$('div', {
  9168. "style": {
  9169. "position": "relative",
  9170. "width": "100%",
  9171. "height": "100%",
  9172. },
  9173. })
  9174. _box.appendChild(_loading)
  9175. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9176. switch (str) {
  9177. case "whiteboard":
  9178. aTool = 1;
  9179. _iframe = $$("iframe", {
  9180. "frameborder": "no",
  9181. "border": "0",
  9182. "scrolling ": "no",
  9183. "style": {
  9184. "cssText": "border:0;width:100%;height:100%"
  9185. },
  9186. "src": "https://beta.iwb.cocorobo.cn/"
  9187. })
  9188. _box.appendChild(_iframe);
  9189. _box.appendChild(_jie);
  9190. _formdiv = new U.UF.UI.form(
  9191. "电子白板",
  9192. _box, {
  9193. "id": "whiteboards" + cid + stage + task + tool,
  9194. "style": {
  9195. "width": "90%",
  9196. "height": "90%",
  9197. "overflow": 'hidden'
  9198. },
  9199. "onresize": function () { }
  9200. }, {
  9201. closecallback: function () { }
  9202. }, {
  9203. "style": {
  9204. "height": "36px"
  9205. }
  9206. }).form; //创建窗体
  9207. _taskbar = {
  9208. "id": str + _formdiv.id,
  9209. "style": {
  9210. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9211. },
  9212. "name": "电子白板",
  9213. "forms": _formdiv,
  9214. "click": function () {
  9215. U.MD.D.I.openApplication(str, obj, info);
  9216. }
  9217. }
  9218. break;
  9219. case "mind":
  9220. aTool = 3;
  9221. _iframe = $$("iframe", {
  9222. "frameborder": "no",
  9223. "border": "0",
  9224. "scrolling ": "no",
  9225. "style": {
  9226. "cssText": "border:0;width:100%;height:100%"
  9227. },
  9228. "src": "/kityminder-editor/dist/index.html"
  9229. });
  9230. _box.appendChild(_iframe);
  9231. _box.appendChild(_jie);
  9232. _formdiv = new U.UF.UI.form(
  9233. "思维导图",
  9234. _box, { //"/jsmind/example/demo.html"
  9235. "id": "minds" + cid + stage + task + tool,
  9236. "style": {
  9237. "width": "90%",
  9238. "height": "90%",
  9239. "overflow": 'hidden'
  9240. },
  9241. "onresize": function () { }
  9242. }, {
  9243. closecallback: function () { }
  9244. }, {
  9245. "style": {
  9246. "height": "36px"
  9247. }
  9248. }).form; //创建窗体
  9249. _taskbar = {
  9250. "id": str + _formdiv.id,
  9251. "style": {
  9252. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9253. },
  9254. "name": "思维导图",
  9255. "forms": _formdiv,
  9256. "click": function () {
  9257. U.MD.D.I.openApplication(str, obj, info);
  9258. }
  9259. }
  9260. break;
  9261. case "doc":
  9262. aTool = 6;
  9263. _iframe = $$("iframe", {
  9264. "frameborder": "no",
  9265. "border": "0",
  9266. "scrolling ": "no",
  9267. "style": {
  9268. "cssText": "border:0;width:100%;height:100%"
  9269. },
  9270. "src": "/Office/Word/WordEditArea.htm"
  9271. })
  9272. _box.appendChild(_iframe);
  9273. _box.appendChild(_jie);
  9274. _formdiv = new U.UF.UI.form(
  9275. "协同文档",
  9276. _box, {
  9277. "id": "docs" + cid + stage + task + tool,
  9278. "style": {
  9279. "width": "90%",
  9280. "height": "90%",
  9281. "overflow": 'hidden'
  9282. },
  9283. "onresize": function () { }
  9284. }, {
  9285. closecallback: function () { }
  9286. }, {
  9287. "style": {
  9288. "height": "36px"
  9289. }
  9290. }).form; //创建窗体
  9291. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9292. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9293. })
  9294. _taskbar = {
  9295. "id": str + _formdiv.id,
  9296. "style": {
  9297. "backgroundImage": "url(/img/icon/doc.png)"
  9298. },
  9299. "name": "协同文档",
  9300. "forms": _formdiv,
  9301. "click": function () {
  9302. U.MD.D.I.openApplication(str, obj, info);
  9303. }
  9304. }
  9305. break;
  9306. }
  9307. const script1 = document.createElement("script");
  9308. script1.type = "text/javascript";
  9309. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9310. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9311. const script2 = document.createElement("script");
  9312. script2.type = "text/javascript";
  9313. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9314. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9315. const script3 = document.createElement("script");
  9316. script3.type = "text/javascript";
  9317. script3.charset = "UTF-8";
  9318. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9319. const script4 = document.createElement("script");
  9320. script4.type = "text/javascript";
  9321. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9322. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9323. if (_iframe) {
  9324. if (str == 'doc') {
  9325. _iframe = _formdiv.querySelector('iframe')
  9326. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9327. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9328. _iframe.contentWindow.document.body.appendChild(script1);
  9329. _iframe.contentWindow.document.body.appendChild(script2);
  9330. // _iframe.contentWindow.document.body.appendChild(script3);
  9331. _iframe.contentWindow.document.body.appendChild(script4);
  9332. })
  9333. if (onloadListener) {
  9334. _iframe.contentDocument.location.reload()
  9335. } else {
  9336. _iframe.contentDocument.location.reload()
  9337. }
  9338. } else if (str == 'mind') {
  9339. _iframe = _formdiv.querySelector('iframe')
  9340. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9341. _iframe.contentWindow.document.body.appendChild(script1);
  9342. _iframe.contentWindow.document.body.appendChild(script2);
  9343. _iframe.contentWindow.document.body.appendChild(script4);
  9344. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9345. })
  9346. if (onloadListener) {
  9347. _iframe.contentDocument.location.reload()
  9348. } else {
  9349. _iframe.contentDocument.location.reload()
  9350. }
  9351. } else {
  9352. _iframe.onload = () => {
  9353. _iframe.contentWindow.document.body.appendChild(script1);
  9354. _iframe.contentWindow.document.body.appendChild(script2);
  9355. // _iframe.contentWindow.document.body.appendChild(script3);
  9356. _iframe.contentWindow.document.body.appendChild(script4);
  9357. };
  9358. }
  9359. _jie.onclick = async () => {
  9360. let text = ''
  9361. if (aTool == 6) {
  9362. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9363. } else if (aTool == 3) {
  9364. text = await U.MD.D.I.getEditorContent(_iframe);
  9365. }
  9366. _loading.style.display = 'flex'
  9367. console.log(_loading);
  9368. var _ajs = _iframe.contentWindow.document.createElement("script");
  9369. _ajs.type = "text/javascript";
  9370. _ajs.innerHTML =
  9371. // 'console.log(' + _loading + ');\n' +
  9372. 'var _js = document.createElement("script");\n' +
  9373. '_js.type="text/javascript";\n' +
  9374. '_js.charset="UTF-8";\n' +
  9375. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9376. "_js.onload = function(){\n" +
  9377. ' var a = document.getElementsByTagName("img")\n' +
  9378. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9379. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9380. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9381. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9382. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9383. "beforeUpload_shishi(file," +
  9384. "'" +
  9385. _userid +
  9386. "'" +
  9387. ", " +
  9388. "'" +
  9389. _cid +
  9390. "'" +
  9391. ", " +
  9392. "'" +
  9393. _stage +
  9394. "'" +
  9395. ", " +
  9396. "'" +
  9397. _task +
  9398. "'" +
  9399. ", " +
  9400. "'" +
  9401. _tool +
  9402. "'" +
  9403. ", " +
  9404. "'" +
  9405. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9406. "'" +
  9407. ", " +
  9408. "'" +
  9409. aTool +
  9410. "'" +
  9411. ", " +
  9412. "`" +
  9413. text +
  9414. "`" +
  9415. ")\n" +
  9416. " });\n" +
  9417. "}\n" +
  9418. "document.head.appendChild(_js);\n";
  9419. _iframe.contentWindow.document.head.appendChild(_ajs);
  9420. }
  9421. }
  9422. //U.MD.D.I.openClick(str);
  9423. //如果有任务栏信息
  9424. // if (_taskbar) {
  9425. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9426. // }
  9427. }
  9428. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9429. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9430. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9431. _userinfo = US.userInfo, //登录用户信息
  9432. _userid = US.userInfo.userid //登录用户id
  9433. let _iframe;
  9434. let _cid = cid,
  9435. _stage = stage,
  9436. _task = task,
  9437. _tool = tool;
  9438. var _jie = $$("div", {
  9439. "style": {
  9440. "position": "absolute",
  9441. "bottom": "50px",
  9442. "right": "50px",
  9443. "zIndex": "9999",
  9444. "backgroundColor": "#2268bc",
  9445. "color": "#fff",
  9446. "padding": "12px 20px",
  9447. "cursor": "pointer",
  9448. "borderRadius": "4px",
  9449. },
  9450. "innerHTML": "上传模板"
  9451. })
  9452. let aTool = ''
  9453. let _loading = document.createElement('div')
  9454. _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;"
  9455. // _loading.id = "";
  9456. let _lchild = document.createElement('div')
  9457. let _limg = document.createElement('img')
  9458. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9459. _limg.style = "width: 26px;margin-right: 10px;"
  9460. _lchild.appendChild(_limg)
  9461. let _lspan = document.createElement('span')
  9462. _lspan.innerHTML = "上传中..."
  9463. _lchild.appendChild(_lspan)
  9464. _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%);"
  9465. _loading.appendChild(_lchild)
  9466. var _box = $$('div', {
  9467. "style": {
  9468. "position": "relative",
  9469. "width": "100%",
  9470. "height": "100%",
  9471. },
  9472. })
  9473. _box.appendChild(_loading)
  9474. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9475. switch (str) {
  9476. case "whiteboard":
  9477. aTool = 1;
  9478. _iframe = $$("iframe", {
  9479. "frameborder": "no",
  9480. "border": "0",
  9481. "scrolling ": "no",
  9482. "style": {
  9483. "cssText": "border:0;width:100%;height:100%"
  9484. },
  9485. "src": "https://beta.iwb.cocorobo.cn/"
  9486. })
  9487. _box.appendChild(_iframe);
  9488. _box.appendChild(_jie);
  9489. _formdiv = new U.UF.UI.form(
  9490. "电子白板",
  9491. _box, {
  9492. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9493. "style": {
  9494. "width": "90%",
  9495. "height": "90%",
  9496. "overflow": 'hidden'
  9497. },
  9498. "onresize": function () { }
  9499. }, {
  9500. closecallback: function () { }
  9501. }, {
  9502. "style": {
  9503. "height": "36px"
  9504. }
  9505. }).form; //创建窗体
  9506. _taskbar = {
  9507. "id": str + _formdiv.id,
  9508. "style": {
  9509. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9510. },
  9511. "name": "电子白板",
  9512. "forms": _formdiv,
  9513. "click": function () {
  9514. U.MD.D.I.openApplication(str, obj, info);
  9515. }
  9516. }
  9517. break;
  9518. case "mind":
  9519. aTool = 3;
  9520. _iframe = $$("iframe", {
  9521. "frameborder": "no",
  9522. "border": "0",
  9523. "scrolling ": "no",
  9524. "style": {
  9525. "cssText": "border:0;width:100%;height:100%"
  9526. },
  9527. "src": "/kityminder-editor/dist/index.html"
  9528. });
  9529. _box.appendChild(_iframe);
  9530. _box.appendChild(_jie);
  9531. _formdiv = new U.UF.UI.form(
  9532. "思维导图",
  9533. _box, { //"/jsmind/example/demo.html"
  9534. "id": "minds_Yu" + cid + stage + task + tool,
  9535. "style": {
  9536. "width": "90%",
  9537. "height": "90%",
  9538. "overflow": 'hidden'
  9539. },
  9540. "onresize": function () { }
  9541. }, {
  9542. closecallback: function () { }
  9543. }, {
  9544. "style": {
  9545. "height": "36px"
  9546. }
  9547. }).form; //创建窗体
  9548. _taskbar = {
  9549. "id": str + _formdiv.id,
  9550. "style": {
  9551. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9552. },
  9553. "name": "思维导图",
  9554. "forms": _formdiv,
  9555. "click": function () {
  9556. U.MD.D.I.openApplication(str, obj, info);
  9557. }
  9558. }
  9559. break;
  9560. case "doc":
  9561. aTool = 6;
  9562. _iframe = $$("iframe", {
  9563. "frameborder": "no",
  9564. "border": "0",
  9565. "scrolling ": "no",
  9566. "style": {
  9567. "cssText": "border:0;width:100%;height:100%"
  9568. },
  9569. "src": "/Office/Word/WordEditArea.htm"
  9570. })
  9571. _box.appendChild(_iframe);
  9572. _box.appendChild(_jie);
  9573. _formdiv = new U.UF.UI.form(
  9574. "协同文档",
  9575. _box, {
  9576. "id": "docs_Yu" + cid + stage + task + tool,
  9577. "style": {
  9578. "width": "90%",
  9579. "height": "90%",
  9580. "overflow": 'hidden'
  9581. },
  9582. "onresize": function () { }
  9583. }, {
  9584. closecallback: function () { }
  9585. }, {
  9586. "style": {
  9587. "height": "36px"
  9588. }
  9589. }).form; //创建窗体
  9590. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9591. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9592. })
  9593. _taskbar = {
  9594. "id": str + _formdiv.id,
  9595. "style": {
  9596. "backgroundImage": "url(/img/icon/doc.png)"
  9597. },
  9598. "name": "协同文档",
  9599. "forms": _formdiv,
  9600. "click": function () {
  9601. U.MD.D.I.openApplication(str, obj, info);
  9602. }
  9603. }
  9604. break;
  9605. case "CocoPi":
  9606. aTool = 57;
  9607. _iframe = $$("iframe", {
  9608. "allowpaymentrequest": "allowpaymentrequest",
  9609. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9610. "webkitallowfullscreen": "",
  9611. "mozallowfullscreen": "",
  9612. "frameborder": "no",
  9613. "border": "0",
  9614. "scrolling ": "no",
  9615. "style": {
  9616. "cssText": "border:0;width:100%;height:100%"
  9617. },
  9618. "src": "https://pi.cocorobo.cn/"
  9619. })
  9620. _box.appendChild(_iframe);
  9621. _box.appendChild(_jie);
  9622. _formdiv = new U.UF.UI.form(
  9623. "CocoPi",
  9624. _box, {
  9625. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9626. "style": {
  9627. "width": "90%",
  9628. "height": "90%",
  9629. "overflow": 'hidden'
  9630. },
  9631. "onresize": function () { }
  9632. }, {
  9633. closecallback: function () { }
  9634. }, {
  9635. "style": {
  9636. "height": "36px"
  9637. }
  9638. }).form; //创建窗体
  9639. _taskbar = {
  9640. "id": str + _formdiv.id,
  9641. "style": {
  9642. "backgroundImage": "url(/img/icon/cocopi.png)"
  9643. },
  9644. "name": "CocoPi",
  9645. "forms": _formdiv,
  9646. "click": function () {
  9647. U.MD.D.I.openApplication(str, obj, info);
  9648. }
  9649. }
  9650. break;
  9651. }
  9652. if (_iframe) {
  9653. if (str == 'doc') {
  9654. _iframe = _formdiv.querySelector('iframe')
  9655. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9656. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9657. })
  9658. if (onloadListener) {
  9659. _iframe.contentDocument.location.reload()
  9660. } else {
  9661. _iframe.contentDocument.location.reload()
  9662. }
  9663. } else if (str == 'mind') {
  9664. _iframe = _formdiv.querySelector('iframe')
  9665. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9666. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9667. })
  9668. if (onloadListener) {
  9669. _iframe.contentDocument.location.reload()
  9670. } else {
  9671. _iframe.contentDocument.location.reload()
  9672. }
  9673. } else if (str == 'whiteboard') {
  9674. _iframe = _formdiv.querySelector('iframe')
  9675. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9676. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9677. })
  9678. // if (onloadListener) {
  9679. // try {
  9680. // _iframe.src += "?cocorobo="+new Date().getTime()
  9681. // _iframe.contentWindow.document.location.reload()
  9682. // } catch (error) {
  9683. // }
  9684. // } else {
  9685. // _iframe.contentDocument.location.reload()
  9686. // }
  9687. } else if (str == 'CocoPi') {
  9688. _iframe = _formdiv.querySelector('iframe')
  9689. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9690. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9691. })
  9692. if (onloadListener) {
  9693. _iframe.contentDocument.location.reload()
  9694. } else {
  9695. _iframe.contentDocument.location.reload()
  9696. }
  9697. } else {
  9698. _iframe.onload = () => { };
  9699. }
  9700. _jie.onclick = async () => {
  9701. let text = ''
  9702. let type = '2'
  9703. if (aTool == 1) {
  9704. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9705. type = '3'
  9706. } else if (aTool == 6) {
  9707. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9708. type = '1'
  9709. } else if (aTool == 3) {
  9710. text = await U.MD.D.I.getEditorContent(_iframe);
  9711. type = '2'
  9712. } else if (aTool == 57) {
  9713. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9714. type = '4'
  9715. }
  9716. _loading.style.display = 'flex'
  9717. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9718. }
  9719. }
  9720. //U.MD.D.I.openClick(str);
  9721. //如果有任务栏信息
  9722. // if (_taskbar) {
  9723. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9724. // }
  9725. }
  9726. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9727. var xmlhttp;
  9728. var Mac, Sn, DeviceId
  9729. if (window.XMLHttpRequest) {
  9730. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9731. xmlhttp = new XMLHttpRequest();
  9732. } else {
  9733. // IE6, IE5 浏览器执行代码
  9734. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9735. }
  9736. xmlhttp.onreadystatechange = function () {
  9737. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9738. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9739. // resolve(res.value[0][0].text);
  9740. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9741. }
  9742. }
  9743. }
  9744. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9745. xmlhttp.send();
  9746. }
  9747. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9748. var xmlhttp;
  9749. var Mac, Sn, DeviceId
  9750. if (window.XMLHttpRequest) {
  9751. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9752. xmlhttp = new XMLHttpRequest();
  9753. } else {
  9754. // IE6, IE5 浏览器执行代码
  9755. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9756. }
  9757. xmlhttp.onreadystatechange = function () {
  9758. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9759. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9760. // resolve(res.value[0][0].text);
  9761. if (type == '2') {
  9762. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9763. } else if (type == '3') {
  9764. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9765. } else if (type == '4') {
  9766. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9767. }
  9768. } else {
  9769. if (type == '2') {
  9770. iframe.contentWindow.editor.minder.importData('json', '')
  9771. } else if (type == '3') {
  9772. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9773. } else if (type == '4') {
  9774. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9775. }
  9776. }
  9777. }
  9778. }
  9779. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9780. xmlhttp.send();
  9781. }
  9782. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9783. var xmlhttp;
  9784. var Mac, Sn, DeviceId
  9785. if (window.XMLHttpRequest) {
  9786. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9787. xmlhttp = new XMLHttpRequest();
  9788. } else {
  9789. // IE6, IE5 浏览器执行代码
  9790. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9791. }
  9792. xmlhttp.onreadystatechange = function () {
  9793. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9794. if (xmlhttp.response) {
  9795. // resolve(res.value[0][0].text);
  9796. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9797. // $(fileInput).val('');
  9798. // });
  9799. span.innerHTML = '上传成功'
  9800. setTimeout(() => {
  9801. loading.style.display = 'none'
  9802. }, 1000);
  9803. }
  9804. }
  9805. }
  9806. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9807. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9808. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9809. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9810. // 设置请求头,表示请求体的编码格式
  9811. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9812. // 设置请求体,使用url-encoded格式的数据
  9813. }
  9814. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9815. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9816. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9817. _userinfo = US.userInfo, //登录用户信息
  9818. _userid = US.userInfo.userid //登录用户id
  9819. let _iframe;
  9820. let _cid = cid,
  9821. _stage = stage,
  9822. _task = task,
  9823. _tool = tool;
  9824. var _jie = $$("div", {
  9825. "style": {
  9826. "position": "absolute",
  9827. "bottom": "50px",
  9828. "right": "50px",
  9829. "zIndex": "9999",
  9830. "backgroundColor": "#2268bc",
  9831. "color": "#fff",
  9832. "padding": "12px 20px",
  9833. "cursor": "pointer",
  9834. "borderRadius": "4px",
  9835. },
  9836. "innerHTML": "提交作业"
  9837. })
  9838. let aTool = ''
  9839. let _loading = document.createElement('div')
  9840. _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;"
  9841. // _loading.id = "";
  9842. let _lchild = document.createElement('div')
  9843. let _limg = document.createElement('img')
  9844. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9845. _limg.style = "width: 26px;margin-right: 10px;"
  9846. _lchild.appendChild(_limg)
  9847. let _lspan = document.createElement('span')
  9848. _lspan.innerHTML = "上传中..."
  9849. _lchild.appendChild(_lspan)
  9850. _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%);"
  9851. _loading.appendChild(_lchild)
  9852. var _box = $$('div', {
  9853. "style": {
  9854. "position": "relative",
  9855. "width": "100%",
  9856. "height": "100%",
  9857. },
  9858. })
  9859. _box.appendChild(_loading)
  9860. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9861. switch (str) {
  9862. case "CocoPi":
  9863. aTool = 57;
  9864. _iframe = $$("iframe", {
  9865. "allowpaymentrequest": "allowpaymentrequest",
  9866. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9867. "webkitallowfullscreen": "",
  9868. "mozallowfullscreen": "",
  9869. "frameborder": "no",
  9870. "border": "0",
  9871. "scrolling ": "no",
  9872. "style": {
  9873. "cssText": "border:0;width:100%;height:100%"
  9874. },
  9875. "src": "https://pi.cocorobo.cn/"
  9876. })
  9877. _box.appendChild(_iframe);
  9878. _box.appendChild(_jie);
  9879. _formdiv = new U.UF.UI.form(
  9880. "CocoPi",
  9881. _box, {
  9882. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9883. "style": {
  9884. "width": "90%",
  9885. "height": "90%",
  9886. "overflow": 'hidden'
  9887. },
  9888. "onresize": function () { }
  9889. }, {
  9890. closecallback: function () { }
  9891. }, {
  9892. "style": {
  9893. "height": "36px"
  9894. }
  9895. }).form; //创建窗体
  9896. _taskbar = {
  9897. "id": str + _formdiv.id,
  9898. "style": {
  9899. "backgroundImage": "url(/img/icon/cocopi.png)"
  9900. },
  9901. "name": "CocoPi",
  9902. "forms": _formdiv,
  9903. "click": function () {
  9904. U.MD.D.I.openApplication(str, obj, info);
  9905. }
  9906. }
  9907. break;
  9908. }
  9909. if (_iframe) {
  9910. if (str == 'CocoPi') {
  9911. _iframe = _formdiv.querySelector('iframe')
  9912. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9913. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9914. })
  9915. if (onloadListener) {
  9916. _iframe.contentDocument.location.reload()
  9917. } else {
  9918. _iframe.contentDocument.location.reload()
  9919. }
  9920. }
  9921. _jie.onclick = async () => {
  9922. let text = ''
  9923. if (aTool == 57) {
  9924. text = _iframe.contentWindow.getLoadXmlStr()
  9925. }
  9926. _loading.style.display = 'flex'
  9927. console.log(_loading);
  9928. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9929. _loading.style.display = 'none'
  9930. let _div = document.createElement('div')
  9931. _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;"
  9932. let _inner = document.createElement('div')
  9933. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9934. _inner.innerHTML = "上传成功"
  9935. _div.appendChild(_inner)
  9936. _iframe.contentWindow.window.document.body.appendChild(_div)
  9937. _div.onclick = () => {
  9938. _iframe.contentWindow.window.document.body.removeChild(_div)
  9939. }
  9940. setTimeout(() => {
  9941. _iframe.contentWindow.window.document.body.removeChild(_div)
  9942. }, 1000);
  9943. }, [], { "type": "POST", "withCredentials": true });
  9944. }
  9945. }
  9946. }
  9947. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9948. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9949. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9950. _userid = student.userid, //登录用户id
  9951. _username = student.student //用户名字
  9952. let _iframe;
  9953. let _cid = cid,
  9954. _stage = stage,
  9955. _task = task,
  9956. _tool = tool;
  9957. var _jie = $$("div", {
  9958. "style": {
  9959. "position": "absolute",
  9960. "bottom": "50px",
  9961. "right": "50px",
  9962. "zIndex": "9999",
  9963. "backgroundColor": "#2268bc",
  9964. "color": "#fff",
  9965. "padding": "12px 20px",
  9966. "cursor": "pointer",
  9967. "borderRadius": "4px",
  9968. },
  9969. "innerHTML": "提交作业"
  9970. })
  9971. let aTool = ''
  9972. let _loading = document.createElement('div')
  9973. _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;"
  9974. // _loading.id = "";
  9975. let _lchild = document.createElement('div')
  9976. let _limg = document.createElement('img')
  9977. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9978. _limg.style = "width: 26px;margin-right: 10px;"
  9979. _lchild.appendChild(_limg)
  9980. let _lspan = document.createElement('span')
  9981. _lspan.innerHTML = "上传中..."
  9982. _lchild.appendChild(_lspan)
  9983. _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%);"
  9984. _loading.appendChild(_lchild)
  9985. var _box = $$('div', {
  9986. "style": {
  9987. "position": "relative",
  9988. "width": "100%",
  9989. "height": "100%",
  9990. },
  9991. })
  9992. _box.appendChild(_loading)
  9993. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9994. switch (str) {
  9995. case "CocoPi":
  9996. aTool = 57;
  9997. _iframe = $$("iframe", {
  9998. "allowpaymentrequest": "allowpaymentrequest",
  9999. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10000. "webkitallowfullscreen": "",
  10001. "mozallowfullscreen": "",
  10002. "frameborder": "no",
  10003. "border": "0",
  10004. "scrolling ": "no",
  10005. "style": {
  10006. "cssText": "border:0;width:100%;height:100%"
  10007. },
  10008. "src": "https://pi.cocorobo.cn/"
  10009. })
  10010. _box.appendChild(_iframe);
  10011. _box.appendChild(_jie);
  10012. _formdiv = new U.UF.UI.form(
  10013. "CocoPi-" + _username,
  10014. _box, {
  10015. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10016. "style": {
  10017. "width": "90%",
  10018. "height": "90%",
  10019. "overflow": 'hidden'
  10020. },
  10021. "onresize": function () { }
  10022. }, {
  10023. closecallback: function () { }
  10024. }, {
  10025. "style": {
  10026. "height": "36px"
  10027. }
  10028. }).form; //创建窗体
  10029. _taskbar = {
  10030. "id": str + _formdiv.id,
  10031. "style": {
  10032. "backgroundImage": "url(/img/icon/cocopi.png)"
  10033. },
  10034. "name": "CocoPi",
  10035. "forms": _formdiv,
  10036. "click": function () {
  10037. U.MD.D.I.openApplication(str, obj, info);
  10038. }
  10039. }
  10040. break;
  10041. }
  10042. if (_iframe) {
  10043. if (str == 'CocoPi') {
  10044. _iframe = _formdiv.querySelector('iframe')
  10045. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10046. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10047. })
  10048. if (onloadListener) {
  10049. _iframe.contentDocument.location.reload()
  10050. } else {
  10051. _iframe.contentDocument.location.reload()
  10052. }
  10053. }
  10054. _jie.onclick = async () => {
  10055. let text = ''
  10056. if (aTool == 57) {
  10057. text = _iframe.contentWindow.getLoadXmlStr()
  10058. }
  10059. _loading.style.display = 'flex'
  10060. console.log(_loading);
  10061. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10062. _loading.style.display = 'none'
  10063. let _div = document.createElement('div')
  10064. _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;"
  10065. let _inner = document.createElement('div')
  10066. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10067. _inner.innerHTML = "上传成功"
  10068. _div.appendChild(_inner)
  10069. _iframe.contentWindow.window.document.body.appendChild(_div)
  10070. _div.onclick = () => {
  10071. _iframe.contentWindow.window.document.body.removeChild(_div)
  10072. }
  10073. setTimeout(() => {
  10074. _iframe.contentWindow.window.document.body.removeChild(_div)
  10075. }, 1000);
  10076. }, [], { "type": "POST", "withCredentials": true });
  10077. }
  10078. }
  10079. }
  10080. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10081. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10082. if (res.value[0].length > 0) {
  10083. if (atool == 57) {
  10084. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10085. }
  10086. } else {
  10087. if (atool == 57) {
  10088. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10089. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10090. }
  10091. }
  10092. }, [], { "type": "POST", "withCredentials": true });
  10093. }