DeskTop.js 776 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "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": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1573. ];
  1574. //CUHK_EDU
  1575. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1576. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1579. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1583. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1586. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1587. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1588. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1589. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1590. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1591. ];
  1592. //CUHK_EDU
  1593. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //010503
  1600. U.MD.D.I.x010503TeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1604. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1605. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1611. ];
  1612. //010503
  1613. U.MD.D.I.x010503StudentDeskIcon = [
  1614. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. ];
  1619. //SPROUT Lab
  1620. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1621. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1622. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1628. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1631. ];
  1632. //SPROUT Lab
  1633. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1634. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. ];
  1639. //010204
  1640. U.MD.D.I.x010204TeacherDeskIcon = [
  1641. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. ];
  1644. //010204
  1645. U.MD.D.I.x010204StudentDeskIcon = [
  1646. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //trail
  1652. U.MD.D.I.trailTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1656. ];
  1657. //trail
  1658. U.MD.D.I.trailStudentDeskIcon = [
  1659. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1664. ];
  1665. //trial
  1666. U.MD.D.I.trialTeacherDeskIcon = [
  1667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1673. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1674. ];
  1675. //trial
  1676. U.MD.D.I.trialStudentDeskIcon = [
  1677. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1682. ];
  1683. //010504
  1684. U.MD.D.I.x010504TeacherDeskIcon = [
  1685. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1686. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //010504
  1698. U.MD.D.I.x010504StudentDeskIcon = [
  1699. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. ];
  1704. //010505
  1705. U.MD.D.I.x010505TeacherDeskIcon = [
  1706. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1707. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1717. ];
  1718. //010505
  1719. U.MD.D.I.x010505StudentDeskIcon = [
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1732. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1733. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1734. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1735. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1736. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1737. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1738. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1739. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1740. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. ];
  1753. //SCNUET
  1754. U.MD.D.I.SCNUETAdminDeskIcon = [
  1755. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1756. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1762. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1766. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1768. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1770. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1772. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1773. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1774. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1775. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1776. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1778. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1779. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1780. ];
  1781. //SCNUET
  1782. U.MD.D.I.SCNUETStudentDeskIcon = [
  1783. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. ];
  1788. //x020201
  1789. U.MD.D.I.x020201TeacherDeskIcon = [
  1790. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1791. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1792. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1795. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1796. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1801. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1804. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1805. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1806. ];
  1807. //x020201
  1808. U.MD.D.I.x020201AdminDeskIcon = [
  1809. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1810. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1811. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1812. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1813. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1814. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1815. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1816. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1820. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1821. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1824. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1825. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1826. ];
  1827. //020201
  1828. U.MD.D.I.x020201StudentDeskIcon = [
  1829. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1830. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1831. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1832. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1833. ];
  1834. //010611
  1835. U.MD.D.I.x010611TeacherDeskIcon = [
  1836. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1837. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1838. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1839. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1840. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1843. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. ];
  1846. //010611
  1847. U.MD.D.I.x010611StudentDeskIcon = [
  1848. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. ];
  1853. //010612
  1854. U.MD.D.I.x010612TeacherDeskIcon = [
  1855. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1856. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1857. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1858. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1859. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1865. ];
  1866. //010612
  1867. U.MD.D.I.x010612StudentDeskIcon = [
  1868. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1869. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1870. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1872. ];
  1873. //tianyuan
  1874. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1881. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1886. ];
  1887. //010611
  1888. U.MD.D.I.tianyuanStudentDeskIcon = [
  1889. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1890. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1891. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1893. ];
  1894. //320101
  1895. U.MD.D.I.x320101TeacherDeskIcon = [
  1896. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1897. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1898. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1899. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1900. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1901. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1902. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1903. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1904. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1905. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1906. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1907. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1908. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1909. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1910. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1911. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1912. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1913. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1914. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1915. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1916. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1917. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1918. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1919. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1920. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1921. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1922. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1923. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1924. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1925. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1926. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1927. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1928. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1929. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1930. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1931. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1932. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1934. ];
  1935. //320101
  1936. U.MD.D.I.x320101StudentDeskIcon = [
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1941. ];
  1942. //szsy
  1943. U.MD.D.I.szsyTeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1948. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1949. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1954. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1955. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. ];
  1964. //szsy
  1965. U.MD.D.I.szsyStudentDeskIcon = [
  1966. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1967. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1968. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1970. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. ];
  1972. //010404
  1973. U.MD.D.I.x010404TeacherDeskIcon = [
  1974. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1975. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1976. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1977. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1978. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1980. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1982. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1983. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1984. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1985. ];
  1986. //010404
  1987. U.MD.D.I.x010404StudentDeskIcon = [
  1988. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1990. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. ];
  1993. //cocorobo demo
  1994. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1995. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1996. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1999. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2000. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2001. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2002. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2006. ];
  2007. //cocorobo demo
  2008. U.MD.D.I.demoCocoStudentDeskIcon = [
  2009. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2011. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2012. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2013. ];
  2014. //MOAI
  2015. U.MD.D.I.MOAITeacherDeskIcon = [
  2016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2020. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2022. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2025. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2026. ];
  2027. //MOAI 学生端
  2028. U.MD.D.I.MOAIStudentDeskIcon = [
  2029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2031. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2032. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2033. ];
  2034. //PREPAI
  2035. U.MD.D.I.PREPAITeacherDeskIcon = [
  2036. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2037. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2038. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2039. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2040. ];
  2041. //PREPAI 学生端
  2042. U.MD.D.I.PREPAIStudentDeskIcon = [
  2043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2044. ];
  2045. //深圳外国语学校(集团)初中部
  2046. U.MD.D.I.x010511TeacherDeskIcon = [
  2047. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2048. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2049. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2050. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2053. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2055. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2056. ];
  2057. //深圳外国语学校(集团)初中部 学生端
  2058. U.MD.D.I.x010511StudentDeskIcon = [
  2059. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2060. ];
  2061. //深圳大学附属实验中学
  2062. U.MD.D.I.x010103TeacherDeskIcon = [
  2063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2071. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2072. ];
  2073. //深圳大学附属实验中学 学生端
  2074. U.MD.D.I.x010103StudentDeskIcon = [
  2075. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2076. ];
  2077. //智理集团
  2078. U.MD.D.I.zlteacherDeskIcon = [
  2079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  2087. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2089. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2090. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2091. ];
  2092. //智理集团
  2093. U.MD.D.I.zlstudentDeskIcon = [
  2094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2095. ];
  2096. //#region 桌面初始化a
  2097. /**
  2098. * 初始化桌面的起始函数
  2099. *
  2100. */
  2101. U.MD.D.I.init = function () {
  2102. if ($("#U_MD_D_K")[0]) {
  2103. //初始化桌面图标
  2104. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2105. // var clickUrl = ':12588/requestIp.php';
  2106. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2107. // U.MD.D.I.Ip = data;
  2108. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2109. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2110. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2111. // })
  2112. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2113. // })
  2114. }
  2115. }
  2116. /**
  2117. * 模式切换
  2118. *
  2119. */
  2120. U.MD.D.I.ModeCheck = function (type) {
  2121. if (US.Config.type == type) {
  2122. return
  2123. }
  2124. US.Config.type = type
  2125. $('.U_PBL_Check .active')[0].className = ''
  2126. if (type == 1) {
  2127. $('.U_PBL_Check div')[0].className = 'active'
  2128. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2129. } else {
  2130. $('.U_PBL_Check div')[1].className = 'active'
  2131. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2132. }
  2133. //初始化桌面图标
  2134. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2135. if (type == 2) {
  2136. U.MD.D.I.openApplication("project")
  2137. }
  2138. }
  2139. /**
  2140. * 隐藏任务栏
  2141. *
  2142. * @param {element} 桌面元素
  2143. */
  2144. U.MD.D.I.hiddenTaskbar = function (el) {
  2145. //任务栏位置变小
  2146. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2147. //桌面的位置变大
  2148. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2149. }
  2150. /**
  2151. * 隐藏任务栏
  2152. *
  2153. * @param {element} 桌面元素
  2154. */
  2155. U.MD.D.I.hiddenTaskbarout = function (el) {
  2156. //任务栏位置变小
  2157. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2158. //任务栏位置变化
  2159. U.selectEl(el).css({ "bottom": "-60px" });
  2160. //桌面的位置变大
  2161. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2162. }
  2163. }
  2164. /**
  2165. * 初始化打印桌面图标
  2166. *
  2167. * @param {element} 桌面元素
  2168. */
  2169. U.MD.D.I.initDesktopIcons = function (el, type) {
  2170. var i, //用于循环
  2171. _content, //桌面图标元素
  2172. _iconcontent, //桌面图标元素
  2173. _frag = $$("frag"), //定义一个碎片元素
  2174. _type = US.userInfo.type,
  2175. _org = US.userInfo.org,
  2176. _oid = US.userInfo.organizeid,
  2177. _role = US.userInfo.role,
  2178. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2179. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2180. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2181. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2182. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2183. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2184. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2185. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2186. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2187. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2188. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2189. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2190. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2191. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2192. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2193. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2194. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2195. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2196. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2197. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2198. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2199. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2200. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2201. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2202. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2203. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2204. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2205. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2206. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2207. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2208. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2209. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2210. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2211. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2212. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2213. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2214. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2215. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2216. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2217. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2218. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2219. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2220. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2221. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2222. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2223. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2224. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2225. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2226. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2227. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2228. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2229. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2230. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2231. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2232. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2233. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2234. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2235. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2236. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2237. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2238. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2239. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2240. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2241. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2242. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2243. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2244. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2245. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2246. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2247. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2248. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2249. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2250. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2251. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2252. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2253. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2254. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2255. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2256. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2257. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2258. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2259. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2260. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2261. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2262. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2263. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2264. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2265. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2266. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2267. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2268. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2269. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2270. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2271. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2272. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2273. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2274. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2275. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2276. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2277. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2278. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2279. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2280. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2281. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2282. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2283. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2284. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2285. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2286. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2287. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2288. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2289. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2290. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2291. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2292. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2293. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2294. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2295. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2296. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2297. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2298. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2299. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2300. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2301. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2302. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2303. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2304. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2305. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2306. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2307. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2308. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //PREPAI
  2309. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //PREPAI
  2310. _x010511TeacherDeskIcon = U.MD.D.I.x010511TeacherDeskIcon, //PREPAI
  2311. _x010511StudentDeskIcon = U.MD.D.I.x010511StudentDeskIcon, //PREPAI
  2312. _x010103TeacherDeskIcon = U.MD.D.I.x010103TeacherDeskIcon, //PREPAI
  2313. _x010103StudentDeskIcon = U.MD.D.I.x010103StudentDeskIcon, //PREPAI
  2314. _zlteacherDeskIconInfo = U.MD.D.I.zlteacherDeskIcon, //zl
  2315. _zlstudentDeskIconInfo = U.MD.D.I.zlstudentDeskIcon, //zl
  2316. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2317. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2318. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5', 'c7df0bd4-6e75-401a-a137-4e163aa62263', '9b46a3c9-7657-11ef-9b30-005056b86db5', '857af1c7-c8ee-4b04-85b5-fd182903adb7', '876030db-7a49-11ef-9b30-005056b86db5', 'b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5', '6c16df93-8849-11ef-9b30-005056b86db5', '72c16ee0-89fe-11ef-9b30-005056b86db5', '369222a8-cddd-11ed-9546-005056b86db5', '3fc7840d-a1c4-11ef-9b30-005056b86db5', '2c5d4971-ed9e-11ef-b508-005056924926', 'bc239322-ffb2-11ef-b508-005056924926', '91796dfb-8791-11ef-9b30-005056b86db5', '86fa8cd7-00c2-11f0-b508-005056924926', '8406b214-085f-11f0-b508-005056924926', '65ad80f0-16bb-11f0-a66a-005056924926', '9a8076a2-469a-11f0-b60f-005056924926', '17dbf412-92de-11f0-9838-005056924926', '31631344-92db-11f0-9838-005056924926'];
  2319. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344', '884c5665-a453-46f3-b7b6-01d575290aa9', 'c9a6de59-8b4f-4be1-8565-a08081f649d3', '7f280060-665e-4868-b68f-1eec9e1b4a07', 'f3b243b2-75e2-4b00-8f66-7644946a2a25', '16ace517-b5c7-4168-a9bb-a9e0035df840', '2fe1a080-4425-4620-b7a0-be2f3750ffd4', 'a5efd078-20f6-4185-bef9-6d1c688bee70', '23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6', 'ec84034b-8ea4-4d27-9cba-1adcb4720bb3', 'b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc', 'c8266c04-59e3-44de-bcf2-8f906e66e636', '7cc601a0-fafc-4116-a805-0adbacf7a38d', '62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926', "fa20a652-5f2a-11f0-bf32-005056924926", "eed08ac6-7269-11f0-9c7b-005056924926",'cf30095b-87d5-11f0-9c7b-005056924926'];
  2320. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2321. //清楚桌面图标
  2322. el.innerHTML = "";
  2323. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2324. _teacherDesktopIconInfo.push(
  2325. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2326. { "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)" } },
  2327. )
  2328. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2329. }
  2330. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2331. _teacherDesktopIconInfo.push(
  2332. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2333. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2334. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2335. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2337. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2338. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2339. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2340. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2341. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2342. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2343. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2344. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2347. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2348. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2349. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2350. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2351. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2352. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2353. )
  2354. }
  2355. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2356. _teacherDesktopIconInfo.push(
  2357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2358. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2359. )
  2360. }
  2361. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2362. _nsfxTeacherDeskIconInfo.push(
  2363. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2364. )
  2365. }
  2366. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2367. // _teacherDesktopIconInfo.push(
  2368. // )
  2369. // }
  2370. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2371. _teacherDesktopIconInfo.push(
  2372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2374. )
  2375. }
  2376. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2377. _teacherDesktopIconInfo.push(
  2378. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2380. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2382. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2383. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2384. )
  2385. _studentDesktopIconInfo.push(
  2386. )
  2387. }
  2388. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2389. _teacherDesktopIconInfo.push(
  2390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2391. )
  2392. _studentDesktopIconInfo.push(
  2393. )
  2394. }
  2395. //010606 组织
  2396. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2397. _teacherDesktopIconInfo.push(
  2398. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2399. )
  2400. _studentDesktopIconInfo.push(
  2401. )
  2402. }
  2403. //麒麟二中 和 民新小学
  2404. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2405. _teacherDesktopIconInfo.push(
  2406. )
  2407. }
  2408. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2409. _teacherDesktopIconInfo.push(
  2410. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2411. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2412. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2413. )
  2414. }
  2415. if (_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1') {
  2416. _hkTeacherDeskIconInfo.push(
  2417. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2418. )
  2419. }
  2420. //北师大附中(010601)
  2421. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2422. // _teacherDesktopIconInfo.push(
  2423. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2424. // )
  2425. // _studentDesktopIconInfo.push(
  2426. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2427. // )
  2428. // }
  2429. //樂善堂余近卿中學
  2430. if (_oid == "8d074a02-6057-11ef-b873-005056b86db5") {
  2431. _teacherDesktopIconInfo.push(
  2432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2433. )
  2434. }
  2435. // Education Artificial Intelligence
  2436. if (_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0") {
  2437. _teacherDesktopIconInfo.push(
  2438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2439. )
  2440. }
  2441. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2442. _teacherDesktopIconInfo.push(
  2443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2444. )
  2445. }
  2446. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2447. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2448. _teacherDesktopIconInfo.push(
  2449. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2450. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2451. )
  2452. }
  2453. //麒麟二中
  2454. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2455. _studentDesktopIconInfo.push(
  2456. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2458. )
  2459. }
  2460. //万科双语
  2461. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2462. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2463. if (el.Name == '项目管理') {
  2464. el.Name = 'PBL项目'
  2465. }
  2466. return el
  2467. })
  2468. _studentDesktopIconInfo3.push(
  2469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2470. )
  2471. }
  2472. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2473. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2474. return el.Name != '魔盒识字' && el.Name != '24点'
  2475. })
  2476. }
  2477. 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) {
  2478. _studentDesktopIconInfo.push(
  2479. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2480. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2481. )
  2482. }
  2483. //循环创建桌面图标
  2484. if (type == 1) {
  2485. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2486. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_studentDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_studentDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2503. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_hkZJLSStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. } //
  2519. } else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2520. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_ytyStudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_ytyStudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2535. } //
  2536. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2537. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_jccssylStudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_jccssylStudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2554. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_scnuaiStudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_scnuaiStudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2571. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_caleStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_caleStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2588. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_thuioeStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_thuioeStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2605. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_tpcStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_tpcStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. } //
  2621. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2622. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_chjyjStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_chjyjStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2639. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szjkyStudentDeskIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_szjkyStudentDeskIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2656. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_x020201StudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_x020201StudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2673. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_SCNUETStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_SCNUETStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2690. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_dseiStudentDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_dseiStudentDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2707. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2724. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_nsfxStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_nsfxStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2741. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_stiaStudentDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_stiaStudentDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2758. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_szdjgStudentDeskIconInfo[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_szdjgStudentDeskIconInfo[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2773. }
  2774. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2775. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_x010607StudentDeskIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010607StudentDeskIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2792. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_xhlyStudentDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_xhlyStudentDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2809. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2826. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_x010503StudentDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_x010503StudentDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2843. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_x010504StudentDeskIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_x010504StudentDeskIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2860. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_x010505StudentDeskIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_x010505StudentDeskIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2877. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_x010404StudentDeskIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_x010404StudentDeskIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2894. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_x010204StudentDeskIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_x010204StudentDeskIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2911. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_x320101StudentDeskIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_x320101StudentDeskIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2928. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_MOAIStudentDeskIcon[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_MOAIStudentDeskIcon[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2943. }
  2944. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2945. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  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. }, [_trailStudentDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_trailStudentDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2960. }
  2961. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2962. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_trialStudentDeskIconInfo[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_trialStudentDeskIconInfo[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2977. }
  2978. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2979. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2996. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_szsyStudentDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_szsyStudentDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  3013. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  3014. _content = $$("div", {
  3015. className: "U_MD_D_KO",
  3016. "onmousedown": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_PREPAIStudentDeskIcon[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_PREPAIStudentDeskIcon[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  3028. }
  3029. } else if (_type == 2 && (_oid == "17dbf412-92de-11f0-9838-005056924926")) {
  3030. for (i = 0; i < _x010511StudentDeskIcon.length; i++) {
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_x010511StudentDeskIcon[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_x010511StudentDeskIcon[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511StudentDeskIcon[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511StudentDeskIcon[i].Name }, _iconcontent);
  3045. }
  3046. } else if (_type == 2 && (_oid == "31631344-92db-11f0-9838-005056924926")) {
  3047. for (i = 0; i < _x010103StudentDeskIcon.length; i++) {
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_x010103StudentDeskIcon[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_x010103StudentDeskIcon[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103StudentDeskIcon[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103StudentDeskIcon[i].Name }, _iconcontent);
  3062. }
  3063. } else if (_type == 2 && (_org == "cf30095b-87d5-11f0-9c7b-005056924926")) {
  3064. for (i = 0; i < _zlstudentDeskIconInfo.length; i++) {
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_zlstudentDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_zlstudentDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlstudentDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlstudentDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  3081. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_demoCocoStudentDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_demoCocoStudentDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  3096. }
  3097. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  3098. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  3099. _content = $$("div", {
  3100. className: "U_MD_D_KO",
  3101. "onmousedown": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_x010608StudentDeskIconInfo[i]]),
  3105. "onclick": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_x010608StudentDeskIconInfo[i]])
  3109. }, _frag); //
  3110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3113. }
  3114. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3115. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_x010611StudentDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_x010611StudentDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3130. }
  3131. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3132. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_x010612StudentDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_x010612StudentDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3149. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_tianyuantudentDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_tianyuantudentDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3166. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_siesStudentDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_siesStudentDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3183. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_guzmsStudentDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_guzmsStudentDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3200. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3201. _content = $$("div", {
  3202. className: "U_MD_D_KO",
  3203. "onmousedown": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_hkStudentDeskIconInfo[i]]),
  3207. "onclick": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_hkStudentDeskIconInfo[i]])
  3211. }, _frag); //
  3212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3215. }
  3216. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3217. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_tycyStudentDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_tycyStudentDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3234. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_ckcpsStudentDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_ckcpsStudentDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3251. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_hkaceStudentDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceStudentDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3268. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_BSDNSstudentDesktopIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3285. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3286. _content = $$("div", {
  3287. className: "U_MD_D_KO",
  3288. "onmousedown": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_cocobizStudentDeskIconInfo[i]]),
  3292. "onclick": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_cocobizStudentDeskIconInfo[i]])
  3296. }, _frag); //
  3297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3300. }
  3301. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3302. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3303. _content = $$("div", {
  3304. className: "U_MD_D_KO",
  3305. "onmousedown": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3309. "onclick": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_xxzjkyStudentDeskIconInfo[i]])
  3313. }, _frag); //
  3314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3317. }
  3318. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3319. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3320. _content = $$("div", {
  3321. className: "U_MD_D_KO",
  3322. "onmousedown": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_studentDesktopIconInfo[i]]),
  3326. "onclick": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_studentDesktopIconInfo[i]])
  3330. }, _frag); //
  3331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3334. }
  3335. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3336. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3337. _content = $$("div", {
  3338. className: "U_MD_D_KO",
  3339. "onmousedown": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_tcStudentDeskIconInfo[i]]),
  3343. "onclick": U.UF.C.closure(function (obj) {
  3344. //防止拖动图标即打开了桌面应用
  3345. U.MD.D.click(this, obj);
  3346. }, [_tcStudentDeskIconInfo[i]])
  3347. }, _frag); //
  3348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3351. }
  3352. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3353. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szscStudentDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_szscStudentDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3370. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  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. }, [_studentDesktopIconInfo3[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_studentDesktopIconInfo3[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3385. }
  3386. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3387. for (i = 0; i < _studentDesktopIconInfo2.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. }, [_studentDesktopIconInfo2[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_studentDesktopIconInfo2[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3404. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3405. if (_role === 0 && _wanketeacherDesktopIconInfo[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. }, [_wanketeacherDesktopIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_wanketeacherDesktopIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3424. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_wankeAdminDesktopIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3439. }
  3440. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3441. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3442. if (_role === 0 && _scnuaiTeacherDeskIconInfo[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. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_scnuaiTeacherDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3459. }
  3460. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3461. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3462. if (_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher') {
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_BSDNSteacherDesktopIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3481. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  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. }, [_scnuaiAdminDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_scnuaiAdminDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3496. }
  3497. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3498. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3499. if (_role === 0 && _jccssylTeacherDeskIconInfo[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. }, [_jccssylTeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_jccssylTeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3518. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3519. if (_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3520. continue
  3521. }
  3522. _content = $$("div", {
  3523. className: "U_MD_D_KO",
  3524. "onmousedown": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_caleTeacherDeskIconInfo[i]]),
  3528. "onclick": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_caleTeacherDeskIconInfo[i]])
  3532. }, _frag); //
  3533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3536. }
  3537. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3538. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  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. }, [_tpcOrganizerDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_tpcOrganizerDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3555. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3556. if (_role === 0 && _tpcTeacherDeskIconInfo[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. }, [_tpcTeacherDeskIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_tpcTeacherDeskIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3575. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3576. if (_role === 0 && _teacherDesktopIconInfo2[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. }, [_teacherDesktopIconInfo2[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_teacherDesktopIconInfo2[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3595. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3596. if (_role === 0 && _thuioeTeacherDeskIconInfo[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. }, [_thuioeTeacherDeskIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_thuioeTeacherDeskIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3615. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3616. if (_role === 0 && _lotechTeacherDeskIconInfo[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. }, [_lotechTeacherDeskIconInfo[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_lotechTeacherDeskIconInfo[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3633. }//
  3634. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3635. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3636. if (_role === 0 && _lqwmsgzsTeacherDeskIconInfo[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. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3655. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3656. if (_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies') {
  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. }, [_siesTeacherDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_siesTeacherDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3675. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3676. if (_role === 0 && _guzmsTeacherDeskIconInfo[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. }, [_guzmsTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_guzmsTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3695. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3696. if (_role === 0 && _longhuaTeacherDeskIconInfo[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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_longhuaTeacherDeskIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3715. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3716. if (_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3717. continue
  3718. }
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_ytyTeacherDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_ytyTeacherDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3735. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3736. if (_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_yunhaiTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. } //_hkStudentDeskIconInfo
  3754. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3755. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3756. if (_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3757. continue
  3758. }
  3759. _content = $$("div", {
  3760. className: "U_MD_D_KO",
  3761. "onmousedown": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3765. "onclick": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3769. }, _frag); //
  3770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3773. }
  3774. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3775. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3776. if (_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3777. continue
  3778. }
  3779. _content = $$("div", {
  3780. className: "U_MD_D_KO",
  3781. "onmousedown": U.UF.C.closure(function (obj) {
  3782. //防止拖动图标即打开了桌面应用
  3783. U.MD.D.click(this, obj);
  3784. }, [_ricohTeacherDeskIconInfo[i]]),
  3785. "onclick": U.UF.C.closure(function (obj) {
  3786. //防止拖动图标即打开了桌面应用
  3787. U.MD.D.click(this, obj);
  3788. }, [_ricohTeacherDeskIconInfo[i]])
  3789. }, _frag); //
  3790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3793. }
  3794. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3795. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3796. if (_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3797. continue
  3798. }
  3799. _content = $$("div", {
  3800. className: "U_MD_D_KO",
  3801. "onmousedown": U.UF.C.closure(function (obj) {
  3802. //防止拖动图标即打开了桌面应用
  3803. U.MD.D.click(this, obj);
  3804. }, [_hkTeacherDeskIconInfo[i]]),
  3805. "onclick": U.UF.C.closure(function (obj) {
  3806. //防止拖动图标即打开了桌面应用
  3807. U.MD.D.click(this, obj);
  3808. }, [_hkTeacherDeskIconInfo[i]])
  3809. }, _frag); //
  3810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3813. }
  3814. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3815. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3816. if (_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3817. continue
  3818. }
  3819. _content = $$("div", {
  3820. className: "U_MD_D_KO",
  3821. "onmousedown": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_tycyTeacherDeskIconInfo[i]]),
  3825. "onclick": U.UF.C.closure(function (obj) {
  3826. //防止拖动图标即打开了桌面应用
  3827. U.MD.D.click(this, obj);
  3828. }, [_tycyTeacherDeskIconInfo[i]])
  3829. }, _frag); //
  3830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3833. }
  3834. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3835. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3836. if (_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3837. continue
  3838. }
  3839. _content = $$("div", {
  3840. className: "U_MD_D_KO",
  3841. "onmousedown": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3845. "onclick": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_ckcpsTeacherDeskIconInfo[i]])
  3849. }, _frag); //
  3850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3853. }
  3854. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3855. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3856. if (_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3857. continue
  3858. }
  3859. _content = $$("div", {
  3860. className: "U_MD_D_KO",
  3861. "onmousedown": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_hkaceTeacherDeskIconInfo[i]]),
  3865. "onclick": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_hkaceTeacherDeskIconInfo[i]])
  3869. }, _frag); //
  3870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3873. }
  3874. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3875. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3876. if (_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3877. continue
  3878. }
  3879. _content = $$("div", {
  3880. className: "U_MD_D_KO",
  3881. "onmousedown": U.UF.C.closure(function (obj) {
  3882. //防止拖动图标即打开了桌面应用
  3883. U.MD.D.click(this, obj);
  3884. }, [_cocobizTeacherDeskIconInfo[i]]),
  3885. "onclick": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_cocobizTeacherDeskIconInfo[i]])
  3889. }, _frag); //
  3890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3893. }
  3894. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3895. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3896. if (_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3897. continue
  3898. }
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3915. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  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. }, [_gdjgAdminDeskIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_gdjgAdminDeskIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3932. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3933. if (_role === 0 && _gdjgTeacherDeskIconInfo[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. }, [_gdjgTeacherDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_gdjgTeacherDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3952. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3953. if (_role === 0 && _szherTeacherDeskIconInfo[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. }, [_szherTeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_szherTeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3972. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_heyuannAdminDeskIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_heyuannAdminDeskIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3989. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3990. if (_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_heyuanTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_heyuanTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. } //
  4008. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  4009. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_dseiAdminDeskIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_dseiAdminDeskIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  4024. }
  4025. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  4026. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  4027. if (_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4028. continue
  4029. }
  4030. _content = $$("div", {
  4031. className: "U_MD_D_KO",
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_dseiTeacherDeskIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_dseiTeacherDeskIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  4044. } //
  4045. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  4046. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  4047. _content = $$("div", {
  4048. className: "U_MD_D_KO",
  4049. "onmousedown": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_chjyjAdminDeskIconInfo[i]]),
  4053. "onclick": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_chjyjAdminDeskIconInfo[i]])
  4057. }, _frag); //
  4058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  4060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  4061. }//
  4062. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  4063. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  4064. if (_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4065. continue
  4066. }
  4067. _content = $$("div", {
  4068. className: "U_MD_D_KO",
  4069. "onmousedown": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_chjyjTeacherDeskIconInfo[i]]),
  4073. "onclick": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_chjyjTeacherDeskIconInfo[i]])
  4077. }, _frag); //
  4078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  4080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  4081. }
  4082. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  4083. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  4084. _content = $$("div", {
  4085. className: "U_MD_D_KO",
  4086. "onmousedown": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_szjkyAdminDeskIconInfo[i]]),
  4090. "onclick": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_szjkyAdminDeskIconInfo[i]])
  4094. }, _frag); //
  4095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  4097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  4098. }//
  4099. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  4100. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  4101. if (_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4102. continue
  4103. }
  4104. _content = $$("div", {
  4105. className: "U_MD_D_KO",
  4106. "onmousedown": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_szjkyTeacherDeskIconInfo[i]]),
  4110. "onclick": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_szjkyTeacherDeskIconInfo[i]])
  4114. }, _frag); //
  4115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4120. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_x020201AdminDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_x020201AdminDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4135. }//
  4136. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4137. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4138. if (_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4139. continue
  4140. }
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_x020201TeacherDeskIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_x020201TeacherDeskIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4157. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_SCNUETAdminDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_SCNUETAdminDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4172. }//
  4173. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4174. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4175. if (_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_SCNUETTeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4194. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4195. _content = $$("div", {
  4196. className: "U_MD_D_KO",
  4197. "onmousedown": U.UF.C.closure(function (obj) {
  4198. //防止拖动图标即打开了桌面应用
  4199. U.MD.D.click(this, obj);
  4200. }, [_futianAdminDeskIconInfo[i]]),
  4201. "onclick": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_futianAdminDeskIconInfo[i]])
  4205. }, _frag); //
  4206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4209. }
  4210. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4211. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4212. if (_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4213. continue
  4214. }
  4215. _content = $$("div", {
  4216. className: "U_MD_D_KO",
  4217. "onmousedown": U.UF.C.closure(function (obj) {
  4218. //防止拖动图标即打开了桌面应用
  4219. U.MD.D.click(this, obj);
  4220. }, [_futianTeacherDeskIconInfo[i]]),
  4221. "onclick": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_futianTeacherDeskIconInfo[i]])
  4225. }, _frag); //
  4226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4229. }
  4230. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4231. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4232. if (_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher') {
  4233. continue
  4234. }
  4235. _content = $$("div", {
  4236. className: "U_MD_D_KO",
  4237. "onmousedown": U.UF.C.closure(function (obj) {
  4238. //防止拖动图标即打开了桌面应用
  4239. U.MD.D.click(this, obj);
  4240. }, [_MingdeTeacherDeskIcon[i]]),
  4241. "onclick": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_MingdeTeacherDeskIcon[i]])
  4245. }, _frag); //
  4246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4249. }
  4250. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4251. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4252. _content = $$("div", {
  4253. className: "U_MD_D_KO",
  4254. "onmousedown": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_lhsAdminDesktopIconInfo[i]]),
  4258. "onclick": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_lhsAdminDesktopIconInfo[i]])
  4262. }, _frag); //
  4263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4266. }
  4267. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4268. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4269. if (_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4270. continue
  4271. }
  4272. _content = $$("div", {
  4273. className: "U_MD_D_KO",
  4274. "onmousedown": U.UF.C.closure(function (obj) {
  4275. //防止拖动图标即打开了桌面应用
  4276. U.MD.D.click(this, obj);
  4277. }, [_lhsteacherDesktopIconInfo[i]]),
  4278. "onclick": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_lhsteacherDesktopIconInfo[i]])
  4282. }, _frag); //
  4283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4286. }
  4287. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4288. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4289. if (_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher') {
  4290. continue
  4291. }
  4292. _content = $$("div", {
  4293. className: "U_MD_D_KO",
  4294. "onmousedown": U.UF.C.closure(function (obj) {
  4295. //防止拖动图标即打开了桌面应用
  4296. U.MD.D.click(this, obj);
  4297. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4298. "onclick": U.UF.C.closure(function (obj) {
  4299. //防止拖动图标即打开了桌面应用
  4300. U.MD.D.click(this, obj);
  4301. }, [_zhoujiateacherDesktopIconInfo[i]])
  4302. }, _frag); //
  4303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4306. }
  4307. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4308. for (i = 0; i < _hanDeskIcon.length; i++) {
  4309. if (_role === 0 && _hanDeskIcon[i].Url == 'testTeacher') {
  4310. continue
  4311. }
  4312. _content = $$("div", {
  4313. className: "U_MD_D_KO",
  4314. "onmousedown": U.UF.C.closure(function (obj) {
  4315. //防止拖动图标即打开了桌面应用
  4316. U.MD.D.click(this, obj);
  4317. }, [_hanDeskIcon[i]]),
  4318. "onclick": U.UF.C.closure(function (obj) {
  4319. //防止拖动图标即打开了桌面应用
  4320. U.MD.D.click(this, obj);
  4321. }, [_hanDeskIcon[i]])
  4322. }, _frag); //
  4323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4326. }
  4327. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4328. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4329. if (_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher') {
  4330. continue
  4331. }
  4332. _content = $$("div", {
  4333. className: "U_MD_D_KO",
  4334. "onmousedown": U.UF.C.closure(function (obj) {
  4335. //防止拖动图标即打开了桌面应用
  4336. U.MD.D.click(this, obj);
  4337. }, [_orgStemDeskIcon[i]]),
  4338. "onclick": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_orgStemDeskIcon[i]])
  4342. }, _frag); //
  4343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4346. }
  4347. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4348. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4349. if (_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher') {
  4350. continue
  4351. }
  4352. _content = $$("div", {
  4353. className: "U_MD_D_KO",
  4354. "onmousedown": U.UF.C.closure(function (obj) {
  4355. //防止拖动图标即打开了桌面应用
  4356. U.MD.D.click(this, obj);
  4357. }, [_szulsDeskIcon[i]]),
  4358. "onclick": U.UF.C.closure(function (obj) {
  4359. //防止拖动图标即打开了桌面应用
  4360. U.MD.D.click(this, obj);
  4361. }, [_szulsDeskIcon[i]])
  4362. }, _frag); //
  4363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4366. }
  4367. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4368. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4369. if (_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher') {
  4370. continue
  4371. }
  4372. _content = $$("div", {
  4373. className: "U_MD_D_KO",
  4374. "onmousedown": U.UF.C.closure(function (obj) {
  4375. //防止拖动图标即打开了桌面应用
  4376. U.MD.D.click(this, obj);
  4377. }, [_orgDesktopIconInfo[i]]),
  4378. "onclick": U.UF.C.closure(function (obj) {
  4379. //防止拖动图标即打开了桌面应用
  4380. U.MD.D.click(this, obj);
  4381. }, [_orgDesktopIconInfo[i]])
  4382. }, _frag); //
  4383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4386. }
  4387. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4388. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4389. if (_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher') {
  4390. continue
  4391. }
  4392. _content = $$("div", {
  4393. className: "U_MD_D_KO",
  4394. "onmousedown": U.UF.C.closure(function (obj) {
  4395. //防止拖动图标即打开了桌面应用
  4396. U.MD.D.click(this, obj);
  4397. }, [_schoolDesktopIconInfo[i]]),
  4398. "onclick": U.UF.C.closure(function (obj) {
  4399. //防止拖动图标即打开了桌面应用
  4400. U.MD.D.click(this, obj);
  4401. }, [_schoolDesktopIconInfo[i]])
  4402. }, _frag); //
  4403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4406. }
  4407. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4408. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4409. if (_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4410. continue
  4411. }
  4412. _content = $$("div", {
  4413. className: "U_MD_D_KO",
  4414. "onmousedown": U.UF.C.closure(function (obj) {
  4415. //防止拖动图标即打开了桌面应用
  4416. U.MD.D.click(this, obj);
  4417. }, [_GMteacherDesktopIconInfo[i]]),
  4418. "onclick": U.UF.C.closure(function (obj) {
  4419. //防止拖动图标即打开了桌面应用
  4420. U.MD.D.click(this, obj);
  4421. }, [_GMteacherDesktopIconInfo[i]])
  4422. }, _frag); //
  4423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4426. }
  4427. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4428. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4429. if (_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4430. continue
  4431. }
  4432. _content = $$("div", {
  4433. className: "U_MD_D_KO",
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖动图标即打开了桌面应用
  4436. U.MD.D.click(this, obj);
  4437. }, [_SONGteacherDesktopIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_SONGteacherDesktopIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4446. }
  4447. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4448. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4449. _content = $$("div", {
  4450. className: "U_MD_D_KO",
  4451. "onmousedown": U.UF.C.closure(function (obj) {
  4452. //防止拖动图标即打开了桌面应用
  4453. U.MD.D.click(this, obj);
  4454. }, [_GMstudentDesktopIconInfo[i]]),
  4455. "onclick": U.UF.C.closure(function (obj) {
  4456. //防止拖动图标即打开了桌面应用
  4457. U.MD.D.click(this, obj);
  4458. }, [_GMstudentDesktopIconInfo[i]])
  4459. }, _frag); //
  4460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4463. }
  4464. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4465. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4466. if (_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4467. continue
  4468. }
  4469. _content = $$("div", {
  4470. className: "U_MD_D_KO",
  4471. "onmousedown": U.UF.C.closure(function (obj) {
  4472. //防止拖动图标即打开了桌面应用
  4473. U.MD.D.click(this, obj);
  4474. }, [_tcTeacherDeskIconInfo[i]]),
  4475. "onclick": U.UF.C.closure(function (obj) {
  4476. //防止拖动图标即打开了桌面应用
  4477. U.MD.D.click(this, obj);
  4478. }, [_tcTeacherDeskIconInfo[i]])
  4479. }, _frag); //
  4480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4483. }
  4484. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4485. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4486. if (_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4487. continue
  4488. }
  4489. _content = $$("div", {
  4490. className: "U_MD_D_KO",
  4491. "onmousedown": U.UF.C.closure(function (obj) {
  4492. //防止拖动图标即打开了桌面应用
  4493. U.MD.D.click(this, obj);
  4494. }, [_tcOrganizerDeskIconInfo[i]]),
  4495. "onclick": U.UF.C.closure(function (obj) {
  4496. //防止拖动图标即打开了桌面应用
  4497. U.MD.D.click(this, obj);
  4498. }, [_tcOrganizerDeskIconInfo[i]])
  4499. }, _frag); //
  4500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4503. }
  4504. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4505. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4506. if (_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4507. continue
  4508. }
  4509. _content = $$("div", {
  4510. className: "U_MD_D_KO",
  4511. "onmousedown": U.UF.C.closure(function (obj) {
  4512. //防止拖动图标即打开了桌面应用
  4513. U.MD.D.click(this, obj);
  4514. }, [_szscTeacherDeskIconInfo[i]]),
  4515. "onclick": U.UF.C.closure(function (obj) {
  4516. //防止拖动图标即打开了桌面应用
  4517. U.MD.D.click(this, obj);
  4518. }, [_szscTeacherDeskIconInfo[i]])
  4519. }, _frag); //
  4520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4523. }
  4524. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4525. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4526. if (_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4527. continue
  4528. }
  4529. _content = $$("div", {
  4530. className: "U_MD_D_KO",
  4531. "onmousedown": U.UF.C.closure(function (obj) {
  4532. //防止拖动图标即打开了桌面应用
  4533. U.MD.D.click(this, obj);
  4534. }, [_szscOrganizerDeskIconInfo[i]]),
  4535. "onclick": U.UF.C.closure(function (obj) {
  4536. //防止拖动图标即打开了桌面应用
  4537. U.MD.D.click(this, obj);
  4538. }, [_szscOrganizerDeskIconInfo[i]])
  4539. }, _frag); //
  4540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4543. }
  4544. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4545. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4546. if (_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4547. continue
  4548. }
  4549. _content = $$("div", {
  4550. className: "U_MD_D_KO",
  4551. "onmousedown": U.UF.C.closure(function (obj) {
  4552. //防止拖动图标即打开了桌面应用
  4553. U.MD.D.click(this, obj);
  4554. }, [_nsfxTeacherDeskIconInfo[i]]),
  4555. "onclick": U.UF.C.closure(function (obj) {
  4556. //防止拖动图标即打开了桌面应用
  4557. U.MD.D.click(this, obj);
  4558. }, [_nsfxTeacherDeskIconInfo[i]])
  4559. }, _frag); //
  4560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4563. }
  4564. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4565. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4566. if (_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4567. continue
  4568. }
  4569. _content = $$("div", {
  4570. className: "U_MD_D_KO",
  4571. "onmousedown": U.UF.C.closure(function (obj) {
  4572. //防止拖动图标即打开了桌面应用
  4573. U.MD.D.click(this, obj);
  4574. }, [_stiaTeacherDeskIconInfo[i]]),
  4575. "onclick": U.UF.C.closure(function (obj) {
  4576. //防止拖动图标即打开了桌面应用
  4577. U.MD.D.click(this, obj);
  4578. }, [_stiaTeacherDeskIconInfo[i]])
  4579. }, _frag); //
  4580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4583. }
  4584. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4585. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4586. if (_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4587. continue
  4588. }
  4589. _content = $$("div", {
  4590. className: "U_MD_D_KO",
  4591. "onmousedown": U.UF.C.closure(function (obj) {
  4592. //防止拖动图标即打开了桌面应用
  4593. U.MD.D.click(this, obj);
  4594. }, [_szdjgTeacherDeskIconInfo[i]]),
  4595. "onclick": U.UF.C.closure(function (obj) {
  4596. //防止拖动图标即打开了桌面应用
  4597. U.MD.D.click(this, obj);
  4598. }, [_szdjgTeacherDeskIconInfo[i]])
  4599. }, _frag); //
  4600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4603. }
  4604. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4605. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4606. if (_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4607. continue
  4608. }
  4609. _content = $$("div", {
  4610. className: "U_MD_D_KO",
  4611. "onmousedown": U.UF.C.closure(function (obj) {
  4612. //防止拖动图标即打开了桌面应用
  4613. U.MD.D.click(this, obj);
  4614. }, [_x010607TeacherDeskIconInfo[i]]),
  4615. "onclick": U.UF.C.closure(function (obj) {
  4616. //防止拖动图标即打开了桌面应用
  4617. U.MD.D.click(this, obj);
  4618. }, [_x010607TeacherDeskIconInfo[i]])
  4619. }, _frag); //
  4620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4623. }
  4624. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4625. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4626. if (_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4627. continue
  4628. }
  4629. _content = $$("div", {
  4630. className: "U_MD_D_KO",
  4631. "onmousedown": U.UF.C.closure(function (obj) {
  4632. //防止拖动图标即打开了桌面应用
  4633. U.MD.D.click(this, obj);
  4634. }, [_xhlyTeacherDeskIconInfo[i]]),
  4635. "onclick": U.UF.C.closure(function (obj) {
  4636. //防止拖动图标即打开了桌面应用
  4637. U.MD.D.click(this, obj);
  4638. }, [_xhlyTeacherDeskIconInfo[i]])
  4639. }, _frag); //
  4640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4643. }
  4644. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4645. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4646. if (_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4647. continue
  4648. }
  4649. _content = $$("div", {
  4650. className: "U_MD_D_KO",
  4651. "onmousedown": U.UF.C.closure(function (obj) {
  4652. //防止拖动图标即打开了桌面应用
  4653. U.MD.D.click(this, obj);
  4654. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4655. "onclick": U.UF.C.closure(function (obj) {
  4656. //防止拖动图标即打开了桌面应用
  4657. U.MD.D.click(this, obj);
  4658. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4659. }, _frag); //
  4660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4663. }
  4664. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4665. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4666. if (_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4667. continue
  4668. }
  4669. _content = $$("div", {
  4670. className: "U_MD_D_KO",
  4671. "onmousedown": U.UF.C.closure(function (obj) {
  4672. //防止拖动图标即打开了桌面应用
  4673. U.MD.D.click(this, obj);
  4674. }, [_x010503TeacherDeskIconInfo[i]]),
  4675. "onclick": U.UF.C.closure(function (obj) {
  4676. //防止拖动图标即打开了桌面应用
  4677. U.MD.D.click(this, obj);
  4678. }, [_x010503TeacherDeskIconInfo[i]])
  4679. }, _frag); //
  4680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4683. }
  4684. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4685. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4686. if (_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4687. continue
  4688. }
  4689. _content = $$("div", {
  4690. className: "U_MD_D_KO",
  4691. "onmousedown": U.UF.C.closure(function (obj) {
  4692. //防止拖动图标即打开了桌面应用
  4693. U.MD.D.click(this, obj);
  4694. }, [_x010504TeacherDeskIconInfo[i]]),
  4695. "onclick": U.UF.C.closure(function (obj) {
  4696. //防止拖动图标即打开了桌面应用
  4697. U.MD.D.click(this, obj);
  4698. }, [_x010504TeacherDeskIconInfo[i]])
  4699. }, _frag); //
  4700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4703. }
  4704. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4705. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4706. if (_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4707. continue
  4708. }
  4709. _content = $$("div", {
  4710. className: "U_MD_D_KO",
  4711. "onmousedown": U.UF.C.closure(function (obj) {
  4712. //防止拖动图标即打开了桌面应用
  4713. U.MD.D.click(this, obj);
  4714. }, [_x010505TeacherDeskIconInfo[i]]),
  4715. "onclick": U.UF.C.closure(function (obj) {
  4716. //防止拖动图标即打开了桌面应用
  4717. U.MD.D.click(this, obj);
  4718. }, [_x010505TeacherDeskIconInfo[i]])
  4719. }, _frag); //
  4720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4723. }
  4724. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4725. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4726. if (_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4727. continue
  4728. }
  4729. _content = $$("div", {
  4730. className: "U_MD_D_KO",
  4731. "onmousedown": U.UF.C.closure(function (obj) {
  4732. //防止拖动图标即打开了桌面应用
  4733. U.MD.D.click(this, obj);
  4734. }, [_x010404TeacherDeskIconInfo[i]]),
  4735. "onclick": U.UF.C.closure(function (obj) {
  4736. //防止拖动图标即打开了桌面应用
  4737. U.MD.D.click(this, obj);
  4738. }, [_x010404TeacherDeskIconInfo[i]])
  4739. }, _frag); //
  4740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4743. }
  4744. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4745. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4746. if (_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4747. continue
  4748. }
  4749. _content = $$("div", {
  4750. className: "U_MD_D_KO",
  4751. "onmousedown": U.UF.C.closure(function (obj) {
  4752. //防止拖动图标即打开了桌面应用
  4753. U.MD.D.click(this, obj);
  4754. }, [_x010204TeacherDeskIconInfo[i]]),
  4755. "onclick": U.UF.C.closure(function (obj) {
  4756. //防止拖动图标即打开了桌面应用
  4757. U.MD.D.click(this, obj);
  4758. }, [_x010204TeacherDeskIconInfo[i]])
  4759. }, _frag); //
  4760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4763. }
  4764. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4765. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4766. if (_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4767. continue
  4768. }
  4769. _content = $$("div", {
  4770. className: "U_MD_D_KO",
  4771. "onmousedown": U.UF.C.closure(function (obj) {
  4772. //防止拖动图标即打开了桌面应用
  4773. U.MD.D.click(this, obj);
  4774. }, [_x320101TeacherDeskIconInfo[i]]),
  4775. "onclick": U.UF.C.closure(function (obj) {
  4776. //防止拖动图标即打开了桌面应用
  4777. U.MD.D.click(this, obj);
  4778. }, [_x320101TeacherDeskIconInfo[i]])
  4779. }, _frag); //
  4780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4783. }
  4784. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4785. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4786. if (_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4787. continue
  4788. }
  4789. _content = $$("div", {
  4790. className: "U_MD_D_KO",
  4791. "onmousedown": U.UF.C.closure(function (obj) {
  4792. //防止拖动图标即打开了桌面应用
  4793. U.MD.D.click(this, obj);
  4794. }, [_trailTeacherDeskIconInfo[i]]),
  4795. "onclick": U.UF.C.closure(function (obj) {
  4796. //防止拖动图标即打开了桌面应用
  4797. U.MD.D.click(this, obj);
  4798. }, [_trailTeacherDeskIconInfo[i]])
  4799. }, _frag); //
  4800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4803. }
  4804. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4805. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4806. if (_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4807. continue
  4808. }
  4809. _content = $$("div", {
  4810. className: "U_MD_D_KO",
  4811. "onmousedown": U.UF.C.closure(function (obj) {
  4812. //防止拖动图标即打开了桌面应用
  4813. U.MD.D.click(this, obj);
  4814. }, [_trialTeacherDeskIconInfo[i]]),
  4815. "onclick": U.UF.C.closure(function (obj) {
  4816. //防止拖动图标即打开了桌面应用
  4817. U.MD.D.click(this, obj);
  4818. }, [_trialTeacherDeskIconInfo[i]])
  4819. }, _frag); //
  4820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4823. }
  4824. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4825. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4826. if (_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4827. continue
  4828. }
  4829. _content = $$("div", {
  4830. className: "U_MD_D_KO",
  4831. "onmousedown": U.UF.C.closure(function (obj) {
  4832. //防止拖动图标即打开了桌面应用
  4833. U.MD.D.click(this, obj);
  4834. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4835. "onclick": U.UF.C.closure(function (obj) {
  4836. //防止拖动图标即打开了桌面应用
  4837. U.MD.D.click(this, obj);
  4838. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4839. }, _frag); //
  4840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4843. }
  4844. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4845. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4846. if (_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4847. continue
  4848. }
  4849. _content = $$("div", {
  4850. className: "U_MD_D_KO",
  4851. "onmousedown": U.UF.C.closure(function (obj) {
  4852. //防止拖动图标即打开了桌面应用
  4853. U.MD.D.click(this, obj);
  4854. }, [_szsyTeacherDeskIconInfo[i]]),
  4855. "onclick": U.UF.C.closure(function (obj) {
  4856. //防止拖动图标即打开了桌面应用
  4857. U.MD.D.click(this, obj);
  4858. }, [_szsyTeacherDeskIconInfo[i]])
  4859. }, _frag); //
  4860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4863. }
  4864. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4865. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4866. if (_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher') {
  4867. continue
  4868. }
  4869. _content = $$("div", {
  4870. className: "U_MD_D_KO",
  4871. "onmousedown": U.UF.C.closure(function (obj) {
  4872. //防止拖动图标即打开了桌面应用
  4873. U.MD.D.click(this, obj);
  4874. }, [_PREPAITeacherDeskIcon[i]]),
  4875. "onclick": U.UF.C.closure(function (obj) {
  4876. //防止拖动图标即打开了桌面应用
  4877. U.MD.D.click(this, obj);
  4878. }, [_PREPAITeacherDeskIcon[i]])
  4879. }, _frag); //
  4880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4883. }
  4884. } else if ((_type == 1 || _type == 4) && _oid == "17dbf412-92de-11f0-9838-005056924926") {
  4885. for (i = 0; i < _x010511TeacherDeskIcon.length; i++) {
  4886. if (_role === 0 && _x010511TeacherDeskIcon[i].Url == 'testTeacher') {
  4887. continue
  4888. }
  4889. _content = $$("div", {
  4890. className: "U_MD_D_KO",
  4891. "onmousedown": U.UF.C.closure(function (obj) {
  4892. //防止拖动图标即打开了桌面应用
  4893. U.MD.D.click(this, obj);
  4894. }, [_x010511TeacherDeskIcon[i]]),
  4895. "onclick": U.UF.C.closure(function (obj) {
  4896. //防止拖动图标即打开了桌面应用
  4897. U.MD.D.click(this, obj);
  4898. }, [_x010511TeacherDeskIcon[i]])
  4899. }, _frag); //
  4900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511TeacherDeskIcon[i].style }, _iconcontent);
  4902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511TeacherDeskIcon[i].Name }, _iconcontent);
  4903. }
  4904. } else if ((_type == 1 || _type == 4) && _oid == "31631344-92db-11f0-9838-005056924926") {
  4905. for (i = 0; i < _x010103TeacherDeskIcon.length; i++) {
  4906. if (_role === 0 && _x010103TeacherDeskIcon[i].Url == 'testTeacher') {
  4907. continue
  4908. }
  4909. _content = $$("div", {
  4910. className: "U_MD_D_KO",
  4911. "onmousedown": U.UF.C.closure(function (obj) {
  4912. //防止拖动图标即打开了桌面应用
  4913. U.MD.D.click(this, obj);
  4914. }, [_x010103TeacherDeskIcon[i]]),
  4915. "onclick": U.UF.C.closure(function (obj) {
  4916. //防止拖动图标即打开了桌面应用
  4917. U.MD.D.click(this, obj);
  4918. }, [_x010103TeacherDeskIcon[i]])
  4919. }, _frag); //
  4920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103TeacherDeskIcon[i].style }, _iconcontent);
  4922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103TeacherDeskIcon[i].Name }, _iconcontent);
  4923. }
  4924. } else if ((_type == 1 || _type == 4) && _org == "cf30095b-87d5-11f0-9c7b-005056924926") {
  4925. for (i = 0; i < _zlteacherDeskIconInfo.length; i++) {
  4926. if (_role === 0 && _zlteacherDeskIconInfo[i].Url == 'testTeacher') {
  4927. continue
  4928. }
  4929. _content = $$("div", {
  4930. className: "U_MD_D_KO",
  4931. "onmousedown": U.UF.C.closure(function (obj) {
  4932. //防止拖动图标即打开了桌面应用
  4933. U.MD.D.click(this, obj);
  4934. }, [_zlteacherDeskIconInfo[i]]),
  4935. "onclick": U.UF.C.closure(function (obj) {
  4936. //防止拖动图标即打开了桌面应用
  4937. U.MD.D.click(this, obj);
  4938. }, [_zlteacherDeskIconInfo[i]])
  4939. }, _frag); //
  4940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlteacherDeskIconInfo[i].style }, _iconcontent);
  4942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlteacherDeskIconInfo[i].Name }, _iconcontent);
  4943. }
  4944. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4945. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4946. if (_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4947. continue
  4948. }
  4949. _content = $$("div", {
  4950. className: "U_MD_D_KO",
  4951. "onmousedown": U.UF.C.closure(function (obj) {
  4952. //防止拖动图标即打开了桌面应用
  4953. U.MD.D.click(this, obj);
  4954. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4955. "onclick": U.UF.C.closure(function (obj) {
  4956. //防止拖动图标即打开了桌面应用
  4957. U.MD.D.click(this, obj);
  4958. }, [_demoCocoTeacherDeskIconInfo[i]])
  4959. }, _frag); //
  4960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4963. }
  4964. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4965. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4966. if (_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4967. continue
  4968. }
  4969. _content = $$("div", {
  4970. className: "U_MD_D_KO",
  4971. "onmousedown": U.UF.C.closure(function (obj) {
  4972. //防止拖动图标即打开了桌面应用
  4973. U.MD.D.click(this, obj);
  4974. }, [_x010608TeacherDeskIconInfo[i]]),
  4975. "onclick": U.UF.C.closure(function (obj) {
  4976. //防止拖动图标即打开了桌面应用
  4977. U.MD.D.click(this, obj);
  4978. }, [_x010608TeacherDeskIconInfo[i]])
  4979. }, _frag); //
  4980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4983. }
  4984. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4985. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4986. if (_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4987. continue
  4988. }
  4989. _content = $$("div", {
  4990. className: "U_MD_D_KO",
  4991. "onmousedown": U.UF.C.closure(function (obj) {
  4992. //防止拖动图标即打开了桌面应用
  4993. U.MD.D.click(this, obj);
  4994. }, [_x010611TeacherDeskIconInfo[i]]),
  4995. "onclick": U.UF.C.closure(function (obj) {
  4996. //防止拖动图标即打开了桌面应用
  4997. U.MD.D.click(this, obj);
  4998. }, [_x010611TeacherDeskIconInfo[i]])
  4999. }, _frag); //
  5000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  5002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  5003. }
  5004. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  5005. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  5006. if (_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher') {
  5007. continue
  5008. }
  5009. _content = $$("div", {
  5010. className: "U_MD_D_KO",
  5011. "onmousedown": U.UF.C.closure(function (obj) {
  5012. //防止拖动图标即打开了桌面应用
  5013. U.MD.D.click(this, obj);
  5014. }, [_x010612TeacherDeskIconInfo[i]]),
  5015. "onclick": U.UF.C.closure(function (obj) {
  5016. //防止拖动图标即打开了桌面应用
  5017. U.MD.D.click(this, obj);
  5018. }, [_x010612TeacherDeskIconInfo[i]])
  5019. }, _frag); //
  5020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  5022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  5023. }
  5024. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  5025. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  5026. if (_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  5027. continue
  5028. }
  5029. _content = $$("div", {
  5030. className: "U_MD_D_KO",
  5031. "onmousedown": U.UF.C.closure(function (obj) {
  5032. //防止拖动图标即打开了桌面应用
  5033. U.MD.D.click(this, obj);
  5034. }, [_tianyuanTeacherDeskIconInfo[i]]),
  5035. "onclick": U.UF.C.closure(function (obj) {
  5036. //防止拖动图标即打开了桌面应用
  5037. U.MD.D.click(this, obj);
  5038. }, [_tianyuanTeacherDeskIconInfo[i]])
  5039. }, _frag); //
  5040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  5042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  5043. }
  5044. } else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  5045. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  5046. if (_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher') {
  5047. continue
  5048. }
  5049. _content = $$("div", {
  5050. className: "U_MD_D_KO",
  5051. "onmousedown": U.UF.C.closure(function (obj) {
  5052. //防止拖动图标即打开了桌面应用
  5053. U.MD.D.click(this, obj);
  5054. }, [_MOAITeacherDeskIcon[i]]),
  5055. "onclick": U.UF.C.closure(function (obj) {
  5056. //防止拖动图标即打开了桌面应用
  5057. U.MD.D.click(this, obj);
  5058. }, [_MOAITeacherDeskIcon[i]])
  5059. }, _frag); //
  5060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  5062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  5063. }
  5064. } else {
  5065. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  5066. if (_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  5067. continue
  5068. }
  5069. _content = $$("div", {
  5070. className: "U_MD_D_KO",
  5071. "onmousedown": U.UF.C.closure(function (obj) {
  5072. //防止拖动图标即打开了桌面应用
  5073. U.MD.D.click(this, obj);
  5074. }, [_teacherDesktopIconInfo[i]]),
  5075. "onclick": U.UF.C.closure(function (obj) {
  5076. //防止拖动图标即打开了桌面应用
  5077. U.MD.D.click(this, obj);
  5078. }, [_teacherDesktopIconInfo[i]])
  5079. }, _frag); //
  5080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  5082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  5083. }
  5084. }
  5085. } else {
  5086. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  5087. _content = $$("div", {
  5088. className: "U_MD_D_KO",
  5089. style: { 'width': '124px', 'height': '145px' },
  5090. "onmousedown": U.UF.C.closure(function (obj) {
  5091. //防止拖动图标即打开了桌面应用
  5092. U.MD.D.click(this, obj);
  5093. }, [_easyDesktopIconInfo[i]]),
  5094. "onclick": U.UF.C.closure(function (obj) {
  5095. //防止拖动图标即打开了桌面应用
  5096. U.MD.D.click(this, obj);
  5097. }, [_easyDesktopIconInfo[i]])
  5098. }, _frag); //
  5099. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  5100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  5101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  5102. }
  5103. }
  5104. if (type == 1) {
  5105. //加载好后给图标定位
  5106. U.MD.D.iconPostion($(_frag).Child());
  5107. } else {
  5108. //加载好后给图标定位
  5109. U.MD.D.iconPostion2($(_frag).Child());
  5110. }
  5111. //把图标加载到页面
  5112. el.appendChild(_frag);
  5113. if(_type == 2){
  5114. U.selectEl(".U_MD_D_RW").css("display", "none");
  5115. }
  5116. }
  5117. /**
  5118. * 显示任务栏
  5119. *
  5120. * @param {element} 桌面元素
  5121. */
  5122. U.MD.D.I.displayTaskbar = function (el) {
  5123. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  5124. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  5125. //任务栏位置变化
  5126. U.selectEl(el).css({ "bottom": "0px" });
  5127. //桌面位置变话
  5128. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  5129. }
  5130. }
  5131. //#region 桌面图标拖动逻辑
  5132. /**
  5133. * 桌面排列图标
  5134. *
  5135. * @param {element} 桌面元素
  5136. * @param {object} 上下相距的距离
  5137. * @param {object} 左右相距的距离
  5138. * @return {object} 命名空间
  5139. */
  5140. U.MD.D.iconPostion = function (childs, top, left) {
  5141. var i; //用于循环处理
  5142. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  5143. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  5144. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5145. for (i = 0; i < childs.length; i++) {
  5146. //如果竖排top超过了范围处理
  5147. if (top + 95 > US.height - 10) {
  5148. //left超过了页面范围处理,则向上重叠打印处理
  5149. if ((left + 180) > US.width) {
  5150. top -= 110;
  5151. left -= 90;
  5152. }
  5153. //没有超过范围,那么left+90添加到下一个竖排打印
  5154. else {
  5155. left += 90;
  5156. top = 15;
  5157. };
  5158. }
  5159. //给图标的位置赋值
  5160. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  5161. if (i < childs.length - 1) {
  5162. //页面图标每次向下加95
  5163. top += 95;
  5164. }
  5165. }
  5166. //返回最后调用的图标的位置
  5167. return [top, left];
  5168. }
  5169. /**
  5170. * 桌面排列图标
  5171. *
  5172. * @param {element} 桌面元素
  5173. * @param {object} 上下相距的距离
  5174. * @param {object} 左右相距的距离
  5175. * @return {object} 命名空间
  5176. */
  5177. U.MD.D.iconPostion2 = function (childs, top, left) {
  5178. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5179. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5180. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5181. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5182. for (i = 0; i < childs.length; i++) {
  5183. //如果竖排top超过了范围处理
  5184. if (left + 150 > US.width - 10) {
  5185. //left超过了页面范围处理,则向上重叠打印处理
  5186. if ((top + 180) > US.Height) {
  5187. top -= 150;
  5188. left -= 150;
  5189. }
  5190. //没有超过范围,那么left+90添加到下一个竖排打印
  5191. else {
  5192. top += 150;
  5193. left = ol;
  5194. };
  5195. }
  5196. //给图标的位置赋值
  5197. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5198. if (i < childs.length - 1) {
  5199. //页面图标每次向下加95
  5200. left += 150;
  5201. }
  5202. }
  5203. //返回最后调用的图标的位置
  5204. return [top, left];
  5205. }
  5206. /**
  5207. * 桌面点击事件逻辑
  5208. *
  5209. * @param {element} 桌面元素
  5210. * @param {object} 上下相距的距离
  5211. * @param {object} 左右相距的距离
  5212. * @return {object} 命名空间
  5213. */
  5214. U.MD.D.click = function (el, obj) {
  5215. var _buttonnumber = event.button; //点击的按钮的事件值
  5216. var _userinfo = US.userInfo;
  5217. U.UF.EV.stopBubble(); //阻止向上冒泡
  5218. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5219. if (_buttonnumber < 2) {
  5220. //如果是click事件的处理
  5221. if (event.type == "click") {
  5222. //如果元素在mousemove事件中没有移动则出发click事件
  5223. if (!U.MD.D.I.IsDrag) {
  5224. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5225. U.alert("请先登录您的账号!");
  5226. setTimeout(() => {
  5227. U.MD.U.L.login();
  5228. }, 2000);
  5229. } else {
  5230. //打开应用处理
  5231. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5232. }
  5233. }
  5234. }
  5235. //如果是mouse事件的处理
  5236. else {
  5237. if (US.Config.type == '1') {
  5238. //拖动处理,添加拖动和拖动结束事件
  5239. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5240. }
  5241. }
  5242. U.MD.D.I.IsDrag = false;
  5243. }
  5244. }
  5245. /**
  5246. * 拖动的处理
  5247. *
  5248. */
  5249. U.MD.D.iconMove = function () {
  5250. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5251. U.MD.D.I.IsDrag = true;
  5252. }
  5253. /**
  5254. * 拖动结束后,这里是定位处理,以网状的形式定位
  5255. *
  5256. * @param {element} 拖动的元素
  5257. * @return {object} 命名空间
  5258. */
  5259. U.MD.D.iconUp = function (el) {
  5260. var _top = 15,
  5261. _left = 20,
  5262. _margin,
  5263. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5264. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5265. if (_positioninfo["OT"] > 15) {
  5266. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5267. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5268. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5269. }
  5270. if (_positioninfo["OL"] > 20) {
  5271. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5272. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5273. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5274. }
  5275. //while循环判断么一个重叠的元素
  5276. do {
  5277. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5278. _top = _positioninfo[0] + 95; //得到定位后的top
  5279. _left = _positioninfo[1]; //得到定位后的left
  5280. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5281. }
  5282. /**
  5283. * 判断拖动后图标是否重叠
  5284. *
  5285. * @param {element} 拖动的元素
  5286. * @param {element} 桌面所有的元素
  5287. * @param {array} 拖动元素的位置
  5288. ----------[0] 上 top
  5289. ----------[1] 左 left
  5290. * @return {object} 命名空间
  5291. */
  5292. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5293. //循环所有的图标
  5294. for (var i = 0; i < childs.length; i++) {
  5295. //判断有没有和该图标诶子重叠的元素
  5296. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5297. return childs[i]; //如果有返回
  5298. }
  5299. }
  5300. }
  5301. //#endregion
  5302. //#endregion
  5303. //#region 桌面应用
  5304. /**
  5305. * 打开应用
  5306. *
  5307. * @param {string} 类型
  5308. -----------------Disk 网盘系统
  5309. -----------------PDisk 学习系统网盘
  5310. -----------------Poto 图片
  5311. -----------------Video 视频
  5312. -----------------Music 音乐
  5313. -----------------Word word
  5314. -----------------Excel excel
  5315. -----------------Txt 记事本
  5316. -----------------PB 学习系统
  5317. -----------------Blog 朋友圈系统
  5318. -----------------FTP ftp系统
  5319. -----------------Group 好友群
  5320. -----------------SY 首页系统
  5321. -----------------Set 个人设置
  5322. -----------------XSet 系统设置
  5323. -----------------App 我们所有的app
  5324. -----------------BC c.1473.cn 平台
  5325. -----------------CWeb d.1473.cn 变成平台
  5326. -----------------其他的外联系统 我们统一用iframe打开
  5327. * @param {array} 类型
  5328. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5329. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5330. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5331. 如果第一个参数为其他,则无第二个参数
  5332. * @returns {array}
  5333. */
  5334. window.addEventListener('message', function (e) { // 监听 message 事件
  5335. // alert(e.data.type);
  5336. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5337. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5338. //3是展示全部阶段 2学生 1老师 4专家
  5339. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5340. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5341. //3是展示全部阶段 2学生 1老师 4专家
  5342. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5343. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5344. //3是展示全部阶段 2学生 1老师 4专家
  5345. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5346. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5347. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5348. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5349. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5350. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5351. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5352. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5353. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5354. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5355. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5356. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5357. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5358. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5359. //3是展示全部阶段 2学生 1老师 4专家
  5360. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5361. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5362. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5363. U.MD.D.I.selectUser();
  5364. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5365. var _formel = document.getElementById("study");
  5366. U.UF.F.windowZooming(_formel);
  5367. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5368. var _formel = document.getElementById("studyDetail");
  5369. U.UF.F.windowZooming(_formel);
  5370. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5371. var _formel = document.getElementById("studyDetail");
  5372. U.UF.F.windowZooming(_formel);
  5373. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5374. var _formel = document.getElementById("studentStudy");
  5375. U.UF.F.windowZooming(_formel);
  5376. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5377. // var _formel = document.getElementById("study");
  5378. //如果最大化了,那么就把他缩小
  5379. // if (_formel.ismaximize) {
  5380. // return;
  5381. // }
  5382. // U.UF.F.windowZooming(_formel);
  5383. // U.UF.F.topWindow(_formel);
  5384. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5385. // var _formel = document.getElementById("studyDetail");
  5386. //如果最大化了,那么就把他缩小
  5387. // if (_formel.ismaximize) {
  5388. // return;
  5389. // }
  5390. // U.UF.F.windowZooming(_formel);
  5391. // U.UF.F.topWindow(_formel);
  5392. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5393. // var _formel = document.getElementById("studentStudy");
  5394. // if (_formel.ismaximize) {
  5395. // return;
  5396. // }
  5397. // U.UF.F.windowZooming(_formel);
  5398. // U.UF.F.topWindow(_formel);
  5399. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5400. var _formel = document.getElementById("study");
  5401. // if (_formel.ismaximize) {
  5402. // return;
  5403. // }
  5404. // U.UF.F.windowZooming(_formel);
  5405. U.UF.F.topWindow(_formel);
  5406. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5407. var _formel = document.getElementById("studentIndex");
  5408. U.UF.F.windowZooming(_formel);
  5409. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5410. var _formel = document.getElementById("studyDetailS");
  5411. U.UF.F.windowZooming(_formel);
  5412. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5413. var _formel = document.getElementById("studioIndex");
  5414. U.UF.F.windowZooming(_formel);
  5415. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5416. var _formel = document.getElementById("studyDetailStudio");
  5417. U.UF.F.windowZooming(_formel);
  5418. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5419. var _formel = document.getElementById("studyDetailStudio");
  5420. U.UF.F.windowZooming(_formel);
  5421. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5422. var _formel = document.getElementById("studyDetailNT");
  5423. U.UF.F.windowZooming(_formel);
  5424. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5425. var _formel = document.getElementById("studyDetailS");
  5426. U.UF.F.windowZooming(_formel);
  5427. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5428. var _formel = document.getElementById("studyDetailS");
  5429. U.UF.F.topWindow(_formel);
  5430. } else if (e.data.tools && e.data.tools == "1") {
  5431. // U.MD.D.I.openApplication("whiteboard")
  5432. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5433. } else if (e.data.tools && e.data.tools == "2") {
  5434. U.MD.D.I.openApplication("note")
  5435. } else if (e.data.tools && e.data.tools == "3") {
  5436. // U.MD.D.I.openApplication("mind")
  5437. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5438. } else if (e.data.tools && e.data.tools == "4") {
  5439. U.MD.D.I.openApplication("investigation")
  5440. } else if (e.data.tools && e.data.tools == "6") {
  5441. // U.MD.D.I.openApplication("doc")
  5442. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5443. } else if (e.data.tools && e.data.tools == "7") {
  5444. // U.MD.D.I.openApplication("mindNetwork")
  5445. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5446. } else if (e.data.tools && e.data.tools == "8") {
  5447. U.MD.D.I.openApplication("library")
  5448. } else if (e.data.tools && e.data.tools == "17") {
  5449. U.MD.D.I.openApplication("stuLibrary")
  5450. } else if (e.data.tools && e.data.tools == "18") {
  5451. U.MD.D.I.openApplication("train")
  5452. } else if (e.data.tools && e.data.tools == "21") {
  5453. U.MD.D.I.openApplication("program")
  5454. } else if (e.data.tools && e.data.tools == "22") {
  5455. U.MD.D.I.openApplication("AIprogram2")
  5456. } else if (e.data.tools && e.data.tools == "23") {
  5457. U.MD.D.I.openApplication("Pythonprogram")
  5458. } else if (e.data.tools && e.data.tools == "24") {
  5459. U.MD.D.I.openApplication("AIprogram")
  5460. } else if (e.data.tools && e.data.tools == "25") {
  5461. U.MD.D.I.openApplication("sys")
  5462. } else if (e.data.tools && e.data.tools == "26") {
  5463. // U.MD.D.I.openApplication("courseDesign")
  5464. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5465. } else if (e.data.tools && e.data.tools == "31") {
  5466. U.MD.D.I.openApplication("netWorkPanel")
  5467. } else if (e.data.tools && e.data.tools == "32") {
  5468. U.MD.D.I.openApplication("codeEdit")
  5469. } else if (e.data.tools && e.data.tools == "57") {
  5470. U.MD.D.I.openApplication("CocoPi")
  5471. } else if (e.data.tools && e.data.tools == "63") {
  5472. U.MD.D.I.openApplication("Wood")
  5473. } else if (e.data.tools && e.data.tools == "58") {
  5474. U.MD.D.I.openApplication("car")
  5475. } else if (e.data.tools && e.data.tools == "59") {
  5476. U.MD.D.I.openApplication("lineSearch")
  5477. } else if (e.data.tools && e.data.tools == "60") {
  5478. U.MD.D.I.openApplication("deepLearning")
  5479. } else if (e.data.tools && e.data.tools == "61") {
  5480. U.MD.D.I.openApplication("allHistory")
  5481. } else if (e.data.tools && e.data.tools == "28") {
  5482. U.MD.D.I.openApplication("translation")
  5483. } else if (e.data.tools && e.data.tools == "37") {
  5484. U.MD.D.I.openApplication("mohe")
  5485. } else if (e.data.tools && e.data.tools == "38") {
  5486. U.MD.D.I.openApplication("24game")
  5487. } else if (e.data.tools && e.data.tools == "39") {
  5488. U.MD.D.I.openApplication("GeoGebra")
  5489. } else if (e.data.tools && e.data.tools == "43") {
  5490. U.MD.D.I.openApplication("studentEvaluate")
  5491. } else if (e.data.tools && e.data.tools == "44") {
  5492. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5493. } else if (e.data.tools && e.data.tools == "46") {
  5494. U.MD.D.I.openApplication("project")
  5495. } else if (e.data.tools && e.data.tools == "71") {
  5496. U.MD.D.I.openApplication("aigptCourse")
  5497. } else if (e.data.tools && e.data.tools == "72") {
  5498. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5499. } else if (e.data.tools && e.data.tools == "1s") {
  5500. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5501. } else if (e.data.tools && e.data.tools == "3s") {
  5502. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5503. } else if (e.data.tools && e.data.tools == "6s") {
  5504. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5505. } else if (e.data.tools && e.data.tools == "1studio") {
  5506. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5507. } else if (e.data.tools && e.data.tools == "3studio") {
  5508. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5509. } else if (e.data.tools && e.data.tools == "6studio") {
  5510. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5511. } else if (e.data.tools && e.data.tools == "3y") {
  5512. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5513. } else if (e.data.tools && e.data.tools == "73y") {
  5514. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5515. } else if (e.data.tools && e.data.tools == "1y") {
  5516. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5517. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5518. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5519. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5520. U.MD.D.I.openApplication("AIAnalyse")
  5521. } else if (e.data.tools && e.data.tools == "1teacher") {
  5522. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5523. } else if (e.data.tools && e.data.tools == "3teacher") {
  5524. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5525. } else if (e.data.tools && e.data.tools == "7teacher") {
  5526. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5527. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5528. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5529. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5530. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5531. } else if (e.data.tools && e.data.tools == "1E") {
  5532. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5533. } else if (e.data.tools && e.data.tools == "3E") {
  5534. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5535. } else if (e.data.tools && e.data.tools == "57y") {
  5536. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5537. } else if (e.data.tools && e.data.tools == "57u") {
  5538. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5539. } else if (e.data.tools && e.data.tools == "57teacher") {
  5540. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5541. } else if (e.data.tools && e.data.tools == "64") {
  5542. U.MD.D.I.openApplication("AIChat")
  5543. } else if (e.data.tools && e.data.tools == "66") {
  5544. U.MD.D.I.openApplication("formulaEdi")
  5545. } else if (e.data.tools && e.data.tools == "67") {
  5546. U.MD.D.I.openApplication("molStr")
  5547. } else if (e.data.tools && e.data.tools == "68") {
  5548. U.MD.D.I.openApplication("timeAxis")
  5549. } else if (e.data.tools && e.data.tools == "openCourse") {
  5550. let _data = {
  5551. typea: e.data.typea || '',
  5552. typeb: e.data.typeb || '',
  5553. typed: e.data.typed || '',
  5554. }
  5555. U.MD.D.I.openInApplication("index", _data)
  5556. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5557. let _data = {
  5558. classid: e.data.classid || '',
  5559. }
  5560. U.MD.D.I.openInApplication("dataClass", _data)
  5561. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5562. let _data = {
  5563. cid: e.data.cid || '',
  5564. gid: e.data.gid || '',
  5565. }
  5566. U.MD.D.I.openInApplication("opencCscl", _data)
  5567. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5568. U.MD.D.I.openApplication("dataBoardTest")
  5569. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5570. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5571. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5572. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5573. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5574. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5575. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5576. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5577. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5578. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5579. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5580. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5581. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5582. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5583. } else if (e.data.tools && e.data.tools == "loginSz") {
  5584. U.MD.D.I.openInApplication("loginSz")
  5585. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5586. if ($('#classroom_observation_board')[0]) {
  5587. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5588. }
  5589. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5590. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5591. if ($('#classroom_observation_ob_comment')[0]) {
  5592. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5593. }
  5594. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5595. } else if (e.data.tools && e.data.tools == "logout") {
  5596. U.MD.U.LO.logoutSystem()
  5597. } else if (e.data.tools && e.data.tools == "getLogin") {
  5598. let _iframe = $('#UI_Login')[0];
  5599. if (_iframe) {
  5600. var userInfo = US.userInfo;
  5601. var type = 2
  5602. if (userInfo && userInfo.userid) {
  5603. type = 1
  5604. }
  5605. _contentWindow = _iframe.contentWindow;
  5606. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5607. }
  5608. }
  5609. });
  5610. U.MD.D.I.selectUser = function () {
  5611. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5612. if (res.value[0].length > 0) {
  5613. US.userInfo = res.value[0][0];
  5614. $(".userName")[0].innerHTML = US.userInfo.username;
  5615. }
  5616. }, [], { "type": "GET", "withCredentials": true });
  5617. }
  5618. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5619. var _userinfo = US.userInfo, //登录用户信息
  5620. _userid = US.userInfo.userid, //登录用户id
  5621. _oid = _userinfo.organizeid,
  5622. _type = US.userInfo.type,
  5623. _org = US.userInfo.org,
  5624. _role = US.userInfo.role,
  5625. _classId = US.userInfo.classid;
  5626. if (_type == 4) {
  5627. tType = 4
  5628. }
  5629. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5630. if (opArray.includes(str)) {
  5631. let _str = str
  5632. if (str == 'appStore') {
  5633. _str = "cocoFlow"
  5634. } else if (str == "futureClass") {
  5635. _str = "cocoNote"
  5636. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5637. _str = "IntelligentForm"
  5638. } else if (str == "testStudent" || str == "testStudentSies") {
  5639. _str = "TeacherCenter"
  5640. }
  5641. try {
  5642. if (data) {
  5643. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5644. } else {
  5645. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5646. }
  5647. } catch (error) {
  5648. console.log(error);
  5649. }
  5650. }
  5651. switch (str) {
  5652. case "studyDetailNT": //无终端模式
  5653. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5654. setTimeout(() => {
  5655. U.MD.U.L.login();
  5656. }, 2000);
  5657. } else {
  5658. _formdiv = new U.UF.UI.form(
  5659. "课程详情",
  5660. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5661. "id": "studyDetailNT",
  5662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _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); } }
  5668. break;
  5669. }
  5670. case "studyDetail":
  5671. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5672. setTimeout(() => {
  5673. U.MD.U.L.login();
  5674. }, 2000);
  5675. } else {
  5676. _formdiv = new U.UF.UI.form(
  5677. "课程详情",
  5678. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5679. "id": "studyDetail",
  5680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _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); } }
  5686. break;
  5687. }
  5688. case "studyDetailTrain":
  5689. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5690. setTimeout(() => {
  5691. U.MD.U.L.login();
  5692. }, 2000);
  5693. } else {
  5694. _formdiv = new U.UF.UI.form(
  5695. "培训详情",
  5696. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5697. "id": "studyDetailTrain",
  5698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. _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); } }
  5704. break;
  5705. }
  5706. case "studyDetailS":
  5707. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5708. setTimeout(() => {
  5709. U.MD.U.L.login();
  5710. }, 2000);
  5711. } else {
  5712. _formdiv = new U.UF.UI.form(
  5713. "项目详情",
  5714. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5715. "id": "studyDetailS",
  5716. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _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); } }
  5722. break;
  5723. }
  5724. case "studyDetailStudio":
  5725. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5726. setTimeout(() => {
  5727. U.MD.U.L.login();
  5728. }, 2000);
  5729. } else {
  5730. _formdiv = new U.UF.UI.form(
  5731. "工作详情",
  5732. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5733. "id": "studyDetailStudio",
  5734. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _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); } }
  5740. break;
  5741. }
  5742. case "studyDetailS5":
  5743. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5744. setTimeout(() => {
  5745. U.MD.U.L.login();
  5746. }, 2000);
  5747. } else {
  5748. _formdiv = new U.UF.UI.form(
  5749. "项目详情",
  5750. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5751. "id": "studyDetailS",
  5752. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _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); } }
  5758. break;
  5759. }
  5760. case "studyDetailGM":
  5761. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5762. setTimeout(() => {
  5763. U.MD.U.L.login();
  5764. }, 2000);
  5765. } else {
  5766. _formdiv = new U.UF.UI.form(
  5767. "课程详情",
  5768. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5769. "id": "studyDetail",
  5770. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _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); } }
  5776. break;
  5777. }
  5778. case "hanUrl":
  5779. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5780. setTimeout(() => {
  5781. U.MD.U.L.login();
  5782. }, 2000);
  5783. } else {
  5784. _formdiv = new U.UF.UI.form(
  5785. "汉字宫",
  5786. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  5787. "id": "hanUrl",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _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); } }
  5794. break;
  5795. }
  5796. case "index":
  5797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5798. setTimeout(() => {
  5799. U.MD.U.L.login();
  5800. }, 2000);
  5801. } else {
  5802. _formdiv = new U.UF.UI.form(
  5803. "课程中心",
  5804. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5805. "id": "study",
  5806. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _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); } }
  5812. break;
  5813. }
  5814. case "dataClass":
  5815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5816. setTimeout(() => {
  5817. U.MD.U.L.login();
  5818. }, 2000);
  5819. } else {
  5820. _formdiv = new U.UF.UI.form(
  5821. "数据报告",
  5822. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5823. "id": "dataClass",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _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); } }
  5830. break;
  5831. }
  5832. case "opencCscl":
  5833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5834. setTimeout(() => {
  5835. U.MD.U.L.login();
  5836. }, 2000);
  5837. } else {
  5838. _formdiv = new U.UF.UI.form(
  5839. "协同建构",
  5840. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5841. "id": "futureClass",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. }
  5850. case "openCourseUpdate":
  5851. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5852. setTimeout(() => {
  5853. U.MD.U.L.login();
  5854. }, 2000);
  5855. } else {
  5856. _formdiv = new U.UF.UI.form(
  5857. "课程管理",
  5858. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5859. "id": "openCourseUpdate",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. break;
  5866. }
  5867. case "openNewCourseUpdate":
  5868. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5869. setTimeout(() => {
  5870. U.MD.U.L.login();
  5871. }, 2000);
  5872. } else {
  5873. _formdiv = new U.UF.UI.form(
  5874. "课程管理",
  5875. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5876. "id": "openCourseUpdate",
  5877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. break;
  5883. }
  5884. case "openCoursePptUpdate":
  5885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5886. setTimeout(() => {
  5887. U.MD.U.L.login();
  5888. }, 2000);
  5889. } else {
  5890. _formdiv = new U.UF.UI.form(
  5891. "课程管理",
  5892. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5893. "id": "openCourseUpdate",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. break;
  5900. }
  5901. case "openCourseEUpdate":
  5902. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5903. setTimeout(() => {
  5904. U.MD.U.L.login();
  5905. }, 2000);
  5906. } else {
  5907. _formdiv = new U.UF.UI.form(
  5908. "课程管理",
  5909. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5910. "id": "openCourseUpdate",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. break;
  5917. }
  5918. case "openCourseAiUpdate":
  5919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5920. setTimeout(() => {
  5921. U.MD.U.L.login();
  5922. }, 2000);
  5923. } else {
  5924. _formdiv = new U.UF.UI.form(
  5925. "课程管理",
  5926. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5927. "id": "openCourseUpdate",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. break;
  5934. }
  5935. case "openCourseAiUpdate2":
  5936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5937. setTimeout(() => {
  5938. U.MD.U.L.login();
  5939. }, 2000);
  5940. } else {
  5941. _formdiv = new U.UF.UI.form(
  5942. "课程管理",
  5943. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5944. "id": "openCourseUpdate",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. break;
  5951. }
  5952. case "openCourseNewUpdate":
  5953. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5954. setTimeout(() => {
  5955. U.MD.U.L.login();
  5956. }, 2000);
  5957. } else {
  5958. _formdiv = new U.UF.UI.form(
  5959. "课程管理",
  5960. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5961. "id": "openCourseUpdate",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. break;
  5968. }
  5969. case "inviteLoginSz":
  5970. _formdiv = new U.UF.UI.form(
  5971. "随机码登录",
  5972. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5973. "id": "loginSz",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. break;
  5980. case "loginSz":
  5981. _formdiv = new U.UF.UI.form(
  5982. "教师登录",
  5983. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5984. "id": "loginSz",
  5985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. break;
  5991. case "teacher":
  5992. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5993. setTimeout(() => {
  5994. U.MD.U.L.login();
  5995. }, 2000);
  5996. } else {
  5997. _formdiv = new U.UF.UI.form(
  5998. "教师管理",
  5999. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6000. "id": "teacher",
  6001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. break;
  6007. }
  6008. case "dataBoardSZArea":
  6009. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6010. setTimeout(() => {
  6011. U.MD.U.L.login();
  6012. }, 2000);
  6013. } else {
  6014. _formdiv = new U.UF.UI.form(
  6015. "综合数据看板",
  6016. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6017. "id": "dataBoardSZArea",
  6018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. break;
  6024. }
  6025. case "dataBoardSZCity":
  6026. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6027. setTimeout(() => {
  6028. U.MD.U.L.login();
  6029. }, 2000);
  6030. } else {
  6031. _formdiv = new U.UF.UI.form(
  6032. "综合数据看板",
  6033. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6034. "id": "dataBoardSZCity",
  6035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. break;
  6041. }
  6042. case "classroom_observation_board":
  6043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6044. setTimeout(() => {
  6045. U.MD.U.L.login();
  6046. }, 2000);
  6047. } else {
  6048. _formdiv = new U.UF.UI.form(
  6049. "课堂观察",
  6050. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid=" + data }), {
  6051. "id": "classroom_observation_board",
  6052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. break;
  6058. }
  6059. case "classroom_observation_ob_comment":
  6060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6061. setTimeout(() => {
  6062. U.MD.U.L.login();
  6063. }, 2000);
  6064. } else {
  6065. _formdiv = new U.UF.UI.form(
  6066. "课堂审核",
  6067. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid=" + data }), {
  6068. "id": "classroom_observation_ob_comment",
  6069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. break;
  6075. }
  6076. case "gptConfig":
  6077. _formdiv = new U.UF.UI.form(
  6078. data.name ? data.name : "应用中心",
  6079. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  6080. "id": "gptConfig" + data.id,
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. break;
  6087. case "testDetail":
  6088. _formdiv = new U.UF.UI.form(
  6089. "表单填写",
  6090. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  6091. "id": "testDetail" + data,
  6092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. break;
  6098. }
  6099. }
  6100. U.MD.D.I.openApplication = function (str, obj, info) {
  6101. obj = obj || {};
  6102. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6103. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6104. _userinfo = US.userInfo, //登录用户信息
  6105. _userid = obj.userid || US.userInfo.userid, //登录用户id
  6106. _oid = obj.organizeid || _userinfo.organizeid,
  6107. _type = US.userInfo.type,
  6108. _org = obj.org || US.userInfo.org,
  6109. _role = US.userInfo.role,
  6110. _classId = US.userInfo.classid,
  6111. _TscreenType = 1
  6112. _screenType = 2,
  6113. _SscreenType = 3;
  6114. let iframeBool = true
  6115. if (U.UF.UI.form.allForm[str]) {
  6116. iframeBool = false
  6117. }
  6118. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  6119. return;
  6120. }
  6121. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  6122. if (opArray.includes(str)) {
  6123. let _str = str
  6124. if (str == 'appStore') {
  6125. _str = "cocoFlow"
  6126. } else if (str == "futureClass") {
  6127. _str = "cocoNote"
  6128. } else if (str == "testTeacher" || str == "testTeacherSies") {
  6129. _str = "IntelligentForm"
  6130. } else if (str == "testStudent" || str == "testStudentSies") {
  6131. _str = "TeacherCenter"
  6132. }
  6133. try {
  6134. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  6135. } catch (error) {
  6136. console.log(error);
  6137. }
  6138. }
  6139. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6140. switch (str) {
  6141. case "studnetProject": //好友打开
  6142. _formdiv = new U.UF.UI.form(
  6143. "我的项目",
  6144. $$("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 }), {
  6145. "id": "studnetProject",
  6146. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _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); } }
  6152. break;
  6153. case "studentEvaluate": //好友打开
  6154. _formdiv = new U.UF.UI.form(
  6155. "我的评价",
  6156. $$("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 }), {
  6157. "id": "studentEvaluate",
  6158. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _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); } }
  6164. break;
  6165. case "my":
  6166. _formdiv = new U.UF.UI.form(
  6167. "我的资料",
  6168. $$("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 }), {
  6169. "id": "my",
  6170. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _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); } }
  6176. break;
  6177. case "program":
  6178. _formdiv = new U.UF.UI.form(
  6179. "编程平台",
  6180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6181. "id": "program",
  6182. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _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); } }
  6188. break;
  6189. case "library":
  6190. _formdiv = new U.UF.UI.form(
  6191. "素材库",
  6192. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6193. "id": "library",
  6194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _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); } }
  6200. break;
  6201. case "whiteboard":
  6202. _formdiv = new U.UF.UI.form(
  6203. "电子白板",
  6204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6205. "id": "whiteboard",
  6206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _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); } }
  6212. break;
  6213. case "investigation":
  6214. _formdiv = new U.UF.UI.form(
  6215. "问卷调查",
  6216. $$("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 }), {
  6217. "id": "investigation",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _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); } }
  6224. break;
  6225. case "note":
  6226. _formdiv = new U.UF.UI.form(
  6227. "便签分类",
  6228. $$("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 }), {
  6229. "id": "note",
  6230. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () { }
  6234. }, { "style": { "height": "36px" } }).form; //创建窗体
  6235. _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); } }
  6236. break;
  6237. // case "score":
  6238. // _formdiv = new U.UF.UI.form(
  6239. // "量规评分",
  6240. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6241. // "id": "score",
  6242. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6243. // "onresize": function() {}
  6244. // }, {
  6245. // closecallback: function() {}
  6246. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6247. // _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); } }
  6248. // break;
  6249. case "mind":
  6250. _formdiv = new U.UF.UI.form(
  6251. "思维导图",
  6252. $$("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"
  6253. "id": "mind",
  6254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _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); } }
  6260. break;
  6261. case "doc":
  6262. // U.MD.D.I.isRoom();
  6263. _formdiv = new U.UF.UI.form(
  6264. "协同文档",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6266. "id": "doc",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6273. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6274. // })
  6275. _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); } }
  6276. break;
  6277. case "studentStudy":
  6278. _formdiv = new U.UF.UI.form(
  6279. "课程中心",
  6280. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6281. "id": "studentStudy",
  6282. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6288. break;
  6289. case "train": //好友打开
  6290. _formdiv = new U.UF.UI.form(
  6291. "训练平台",
  6292. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6293. "id": "train",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6300. break;
  6301. case "mindNetwork": //好友打开
  6302. _formdiv = new U.UF.UI.form(
  6303. "思维网格",
  6304. $$("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 }), {
  6305. "id": "mindNetwork",
  6306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6312. break;
  6313. case "studentClassRoom": //好友打开
  6314. _formdiv = new U.UF.UI.form(
  6315. "实时课堂",
  6316. $$("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 }), {
  6317. "id": "studentClassRoom",
  6318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6324. setTimeout(() => {
  6325. U.UF.F.windowZooming(_formdiv)
  6326. }, 0);
  6327. break;
  6328. }
  6329. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6330. switch (str) {
  6331. case "studnetProject": //好友打开
  6332. _formdiv = new U.UF.UI.form(
  6333. "我的项目",
  6334. $$("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 }), {
  6335. "id": "studnetProject",
  6336. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _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); } }
  6342. break;
  6343. case "studentEvaluate": //好友打开
  6344. _formdiv = new U.UF.UI.form(
  6345. "我的评价",
  6346. $$("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 }), {
  6347. "id": "studentEvaluate",
  6348. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. case "my":
  6356. _formdiv = new U.UF.UI.form(
  6357. "我的资料",
  6358. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6359. "id": "my",
  6360. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6366. break;
  6367. case "program":
  6368. _formdiv = new U.UF.UI.form(
  6369. "编程平台",
  6370. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6371. "id": "program",
  6372. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. break;
  6379. case "library":
  6380. _formdiv = new U.UF.UI.form(
  6381. "素材库",
  6382. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6383. "id": "library",
  6384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6390. break;
  6391. case "whiteboard":
  6392. _formdiv = new U.UF.UI.form(
  6393. "电子白板",
  6394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6395. "id": "whiteboard",
  6396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //创建窗体
  6401. _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); } }
  6402. break;
  6403. case "investigation":
  6404. _formdiv = new U.UF.UI.form(
  6405. "问卷调查",
  6406. $$("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 }), {
  6407. "id": "investigation",
  6408. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //创建窗体
  6413. _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); } }
  6414. break;
  6415. case "note":
  6416. _formdiv = new U.UF.UI.form(
  6417. "便签分类",
  6418. $$("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 }), {
  6419. "id": "note",
  6420. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //创建窗体
  6425. _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); } }
  6426. break;
  6427. // case "score":
  6428. // _formdiv = new U.UF.UI.form(
  6429. // "量规评分",
  6430. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6431. // "id": "score",
  6432. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6433. // "onresize": function() {}
  6434. // }, {
  6435. // closecallback: function() {}
  6436. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6437. // _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); } }
  6438. // break;
  6439. case "mind":
  6440. _formdiv = new U.UF.UI.form(
  6441. "思维导图",
  6442. $$("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"
  6443. "id": "mind",
  6444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _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); } }
  6450. break;
  6451. case "doc":
  6452. // U.MD.D.I.isRoom();
  6453. _formdiv = new U.UF.UI.form(
  6454. "协同文档",
  6455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6456. "id": "doc",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6463. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6464. })
  6465. _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); } }
  6466. break;
  6467. case "train": //好友打开
  6468. _formdiv = new U.UF.UI.form(
  6469. "训练平台",
  6470. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6471. "id": "train",
  6472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _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); } }
  6478. break;
  6479. case "studentStudy":
  6480. _formdiv = new U.UF.UI.form(
  6481. "课程中心",
  6482. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6483. "id": "studentStudy",
  6484. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. case "mindNetwork": //好友打开
  6492. _formdiv = new U.UF.UI.form(
  6493. "思维网格",
  6494. $$("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 }), {
  6495. "id": "mindNetwork",
  6496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _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); } }
  6502. break;
  6503. case "studentClassRoom": //好友打开
  6504. _formdiv = new U.UF.UI.form(
  6505. "实时课堂",
  6506. $$("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 }), {
  6507. "id": "studentClassRoom",
  6508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. setTimeout(() => {
  6515. U.UF.F.windowZooming(_formdiv)
  6516. }, 0);
  6517. break;
  6518. }
  6519. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6520. //选择应用处理
  6521. switch (str) {
  6522. case "project": //好友打开
  6523. _formdiv = new U.UF.UI.form(
  6524. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6525. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6526. "id": "project",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "student":
  6535. _formdiv = new U.UF.UI.form(
  6536. "学生管理",
  6537. $$("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 }), {
  6538. "id": "student",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "evaluate":
  6547. _formdiv = new U.UF.UI.form(
  6548. "学生评价",
  6549. $$("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 }), {
  6550. "id": "evaluate",
  6551. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "sys":
  6559. _formdiv = new U.UF.UI.form(
  6560. "目标管理",
  6561. $$("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 }), {
  6562. "id": "sys",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "courseDesign":
  6571. _formdiv = new U.UF.UI.form(
  6572. "项目设计",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6574. "id": "courseDesign",
  6575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "program":
  6583. _formdiv = new U.UF.UI.form(
  6584. "编程平台",
  6585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6586. "id": "program",
  6587. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "class":
  6595. _formdiv = new U.UF.UI.form(
  6596. "班级管理",
  6597. $$("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 }), {
  6598. "id": "class",
  6599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _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); } }
  6605. break;
  6606. case "Grade":
  6607. _formdiv = new U.UF.UI.form(
  6608. "年级管理",
  6609. $$("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 }), {
  6610. "id": "Grade",
  6611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "teacherOffice":
  6619. _formdiv = new U.UF.UI.form(
  6620. "教研室",
  6621. $$("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 }), {
  6622. "id": "teacherOffice",
  6623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. case "my":
  6631. _formdiv = new U.UF.UI.form(
  6632. "我的资料",
  6633. $$("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 }), {
  6634. "id": "my",
  6635. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _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); } }
  6641. break;
  6642. case "notice":
  6643. _formdiv = new U.UF.UI.form(
  6644. "通知公告",
  6645. $$("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 }), {
  6646. "id": "notice",
  6647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _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); } }
  6653. break;
  6654. case "library":
  6655. _formdiv = new U.UF.UI.form(
  6656. "素材库",
  6657. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6658. "id": "library",
  6659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _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); } }
  6665. break;
  6666. case "whiteboard":
  6667. _formdiv = new U.UF.UI.form(
  6668. "电子白板",
  6669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6670. "id": "whiteboard",
  6671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //创建窗体
  6676. _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); } }
  6677. break;
  6678. case "investigation":
  6679. _formdiv = new U.UF.UI.form(
  6680. "问卷调查",
  6681. $$("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 }), {
  6682. "id": "investigation",
  6683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6684. "onresize": function () { }
  6685. }, {
  6686. closecallback: function () { }
  6687. }, { "style": { "height": "36px" } }).form; //创建窗体
  6688. _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); } }
  6689. break;
  6690. case "note":
  6691. _formdiv = new U.UF.UI.form(
  6692. "便签分类",
  6693. $$("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 }), {
  6694. "id": "note",
  6695. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6696. "onresize": function () { }
  6697. }, {
  6698. closecallback: function () { }
  6699. }, { "style": { "height": "36px" } }).form; //创建窗体
  6700. _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); } }
  6701. break;
  6702. // case "score":
  6703. // _formdiv = new U.UF.UI.form(
  6704. // "量规评分",
  6705. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6706. // "id": "score",
  6707. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6708. // "onresize": function() {}
  6709. // }, {
  6710. // closecallback: function() {}
  6711. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6712. // _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); } }
  6713. // break;
  6714. case "mind":
  6715. _formdiv = new U.UF.UI.form(
  6716. "思维导图",
  6717. $$("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"
  6718. "id": "mind",
  6719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6720. "onresize": function () { }
  6721. }, {
  6722. closecallback: function () { }
  6723. }, { "style": { "height": "36px" } }).form; //创建窗体
  6724. _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); } }
  6725. break;
  6726. case "doc":
  6727. // U.MD.D.I.isRoom();
  6728. _formdiv = new U.UF.UI.form(
  6729. "协同文档",
  6730. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6731. "id": "doc",
  6732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6738. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6739. })
  6740. _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); } }
  6741. break;
  6742. case "study":
  6743. _formdiv = new U.UF.UI.form(
  6744. "课程中心",
  6745. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6746. "id": "study",
  6747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. break;
  6754. case "mindNetwork": //好友打开
  6755. _formdiv = new U.UF.UI.form(
  6756. "思维网格",
  6757. $$("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 }), {
  6758. "id": "mindNetwork",
  6759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6765. break;
  6766. case "train": //好友打开
  6767. _formdiv = new U.UF.UI.form(
  6768. "训练平台",
  6769. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6770. "id": "mindNetwork",
  6771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "teacherClassRoom": //好友打开
  6779. _formdiv = new U.UF.UI.form(
  6780. "实时课堂",
  6781. $$("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 }), {
  6782. "id": "teacherClassRoom",
  6783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _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); } }
  6789. setTimeout(() => {
  6790. U.UF.F.windowZooming(_formdiv)
  6791. }, 0);
  6792. break;
  6793. }
  6794. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6795. switch (str) {
  6796. case "project": //好友打开
  6797. _formdiv = new U.UF.UI.form(
  6798. "课程管理",
  6799. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6800. "id": "project",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6807. break;
  6808. case "evaluate":
  6809. _formdiv = new U.UF.UI.form(
  6810. "学生评价",
  6811. $$("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 }), {
  6812. "id": "evaluate",
  6813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _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); } }
  6819. break;
  6820. case "notice":
  6821. _formdiv = new U.UF.UI.form(
  6822. "通知公告",
  6823. $$("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 }), {
  6824. "id": "notice",
  6825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6826. "onresize": function () { }
  6827. }, {
  6828. closecallback: function () { }
  6829. }, { "style": { "height": "36px" } }).form; //创建窗体
  6830. _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); } }
  6831. break;
  6832. case "stuLibrary":
  6833. _formdiv = new U.UF.UI.form(
  6834. "学习资料",
  6835. $$("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 }), {
  6836. "id": "stuLibrary",
  6837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //创建窗体
  6842. _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); } }
  6843. break;
  6844. case "program":
  6845. _formdiv = new U.UF.UI.form(
  6846. "编程平台",
  6847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6848. "id": "program",
  6849. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. case "whiteboard":
  6857. _formdiv = new U.UF.UI.form(
  6858. "电子白板",
  6859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6860. "id": "whiteboard",
  6861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _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); } }
  6867. break;
  6868. case "investigation":
  6869. _formdiv = new U.UF.UI.form(
  6870. "问卷调查",
  6871. $$("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 }), {
  6872. "id": "investigation",
  6873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _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); } }
  6879. break;
  6880. case "mind":
  6881. _formdiv = new U.UF.UI.form(
  6882. "思维导图",
  6883. $$("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"
  6884. "id": "mind",
  6885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _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); } }
  6891. break;
  6892. case "doc":
  6893. // U.MD.D.I.isRoom();
  6894. _formdiv = new U.UF.UI.form(
  6895. "协同文档",
  6896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6897. "id": "doc",
  6898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6904. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6905. })
  6906. _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); } }
  6907. break;
  6908. case "study":
  6909. _formdiv = new U.UF.UI.form(
  6910. "课程中心",
  6911. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6912. "id": "study",
  6913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6914. "onresize": function () { }
  6915. }, {
  6916. closecallback: function () { }
  6917. }, { "style": { "height": "36px" } }).form; //创建窗体
  6918. _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); } }
  6919. break;
  6920. case "mindNetwork": //好友打开
  6921. _formdiv = new U.UF.UI.form(
  6922. "思维网格",
  6923. $$("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 }), {
  6924. "id": "mindNetwork",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _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); } }
  6931. break;
  6932. case "train": //好友打开
  6933. _formdiv = new U.UF.UI.form(
  6934. "训练平台",
  6935. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6936. "id": "train",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _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); } }
  6943. break;
  6944. case "sys":
  6945. _formdiv = new U.UF.UI.form(
  6946. "目标管理",
  6947. $$("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 }), {
  6948. "id": "sys",
  6949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6950. "onresize": function () { }
  6951. }, {
  6952. closecallback: function () { }
  6953. }, { "style": { "height": "36px" } }).form; //创建窗体
  6954. _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); } }
  6955. break;
  6956. case "courseDesign":
  6957. _formdiv = new U.UF.UI.form(
  6958. "项目设计",
  6959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6960. "id": "courseDesign",
  6961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6962. "onresize": function () { }
  6963. }, {
  6964. closecallback: function () { }
  6965. }, { "style": { "height": "36px" } }).form; //创建窗体
  6966. _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); } }
  6967. break;
  6968. }
  6969. } else if (!_type) {
  6970. switch (str) {
  6971. case "my":
  6972. _formdiv = new U.UF.UI.form(
  6973. "我的资料",
  6974. $$("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 }), {
  6975. "id": "my",
  6976. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _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); } }
  6982. break;
  6983. }
  6984. }
  6985. switch (str) {
  6986. // AIprogram2 AI体验 aihub.cocorobo.cn
  6987. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6988. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6989. case "formulaEdi": //公式编辑
  6990. _formdiv = new U.UF.UI.form(
  6991. "公式编辑",
  6992. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6993. "id": "formulaEdi",
  6994. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _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); } }
  7000. break;
  7001. case "molStr": //分子结构
  7002. _formdiv = new U.UF.UI.form(
  7003. "分子结构",
  7004. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  7005. "id": "molStr",
  7006. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _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); } }
  7012. break;
  7013. case "timeAxis": //时间轴
  7014. _formdiv = new U.UF.UI.form(
  7015. "时间轴",
  7016. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  7017. "id": "timeAxis",
  7018. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _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); } }
  7024. break;
  7025. case "AIprogram2": //AI体验
  7026. _formdiv = new U.UF.UI.form(
  7027. "AI体验",
  7028. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  7029. "id": "AIprogram2",
  7030. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7031. "onresize": function () { }
  7032. }, {
  7033. closecallback: function () { }
  7034. }, { "style": { "height": "36px" } }).form; //创建窗体
  7035. _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); } }
  7036. break;
  7037. case "Pythonprogram": //python编程
  7038. _formdiv = new U.UF.UI.form(
  7039. "Python编程",
  7040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  7041. "id": "Pythonprogram",
  7042. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7043. "onresize": function () { }
  7044. }, {
  7045. closecallback: function () { }
  7046. }, { "style": { "height": "36px" } }).form; //创建窗体
  7047. _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); } }
  7048. break;
  7049. case "AIprogram": //ai编程
  7050. _formdiv = new U.UF.UI.form(
  7051. "AI编程平台",
  7052. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  7053. "id": "AIprogram",
  7054. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _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); } }
  7060. break;
  7061. case "CocoPi": //CocoPi
  7062. _formdiv = new U.UF.UI.form(
  7063. "CocoPi",
  7064. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  7065. "id": "CocoPi",
  7066. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7067. "onresize": function () { }
  7068. }, {
  7069. closecallback: function () { }
  7070. }, { "style": { "height": "36px" } }).form; //创建窗体
  7071. _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); } }
  7072. break;
  7073. case "Wood": //Wood
  7074. _formdiv = new U.UF.UI.form(
  7075. "海龟编程",
  7076. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  7077. "id": "Wood",
  7078. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7079. "onresize": function () { }
  7080. }, {
  7081. closecallback: function () { }
  7082. }, { "style": { "height": "36px" } }).form; //创建窗体
  7083. _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); } }
  7084. break;
  7085. case "car": //模拟驾驶
  7086. _formdiv = new U.UF.UI.form(
  7087. "模拟驾驶",
  7088. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  7089. "id": "car",
  7090. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7091. "onresize": function () { }
  7092. }, {
  7093. closecallback: function () { }
  7094. }, { "style": { "height": "36px" } }).form; //创建窗体
  7095. _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); } }
  7096. break;
  7097. case "lineSearch": //路径搜索
  7098. _formdiv = new U.UF.UI.form(
  7099. "路径搜索",
  7100. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/" }), {
  7101. "id": "lineSearch",
  7102. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7103. "onresize": function () { }
  7104. }, {
  7105. closecallback: function () { }
  7106. }, { "style": { "height": "36px" } }).form; //创建窗体
  7107. _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); } }
  7108. break;
  7109. case "deepLearning": //深度学习
  7110. _formdiv = new U.UF.UI.form(
  7111. "深度学习",
  7112. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#" }), {
  7113. "id": "deepLearning",
  7114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, { "style": { "height": "36px" } }).form; //创建窗体
  7119. _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); } }
  7120. break;
  7121. case "allHistory": //深度学习
  7122. _formdiv = new U.UF.UI.form(
  7123. "全历史",
  7124. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  7125. "id": "allHistory",
  7126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, { "style": { "height": "36px" } }).form; //创建窗体
  7131. _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); } }
  7132. break;
  7133. case "chatPDF": //ai编程
  7134. _formdiv = new U.UF.UI.form(
  7135. "chatPDF",
  7136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  7137. "id": "chatPDF",
  7138. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, { "style": { "height": "36px" } }).form; //创建窗体
  7143. _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); } }
  7144. break;
  7145. case "resources": //国家教育
  7146. _formdiv = new U.UF.UI.form(
  7147. "国家教育",
  7148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  7149. "id": "resources",
  7150. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, { "style": { "height": "36px" } }).form; //创建窗体
  7155. _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); } }
  7156. break;
  7157. case "codeEdit": //源码编辑
  7158. _formdiv = new U.UF.UI.form(
  7159. "源码编辑",
  7160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  7161. "id": "codeEdit",
  7162. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _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); } }
  7168. break; //
  7169. case "MindMap": //MindMap
  7170. _formdiv = new U.UF.UI.form(
  7171. "MindMap",
  7172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7173. "id": "MindMap",
  7174. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _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); } }
  7180. break;
  7181. case "netWorkPanel": //netWorkPanel
  7182. _formdiv = new U.UF.UI.form(
  7183. "netWorkPanel",
  7184. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7185. "id": "netWorkPanel",
  7186. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _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); } }
  7192. break;
  7193. case "GeoGebra": //GeoGebra
  7194. _formdiv = new U.UF.UI.form(
  7195. "GeoGebra",
  7196. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  7197. "id": "GeoGebra",
  7198. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //创建窗体
  7203. _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); } }
  7204. break;
  7205. case "translation": //翻译
  7206. _formdiv = new U.UF.UI.form(
  7207. "翻译",
  7208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7209. "id": "translation",
  7210. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //创建窗体
  7215. _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); } }
  7216. break;
  7217. case "mohe": //魔盒
  7218. _formdiv = new U.UF.UI.form(
  7219. "魔盒识字",
  7220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7221. "id": "mohe",
  7222. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _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); } }
  7228. break;
  7229. case "24game": //24点
  7230. _formdiv = new U.UF.UI.form(
  7231. "24点",
  7232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7233. "id": "24game",
  7234. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _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); } }
  7240. break;
  7241. case "case":
  7242. _formdiv = new U.UF.UI.form(
  7243. "课程进展",
  7244. $$("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 }), {
  7245. "id": "case",
  7246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _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); } }
  7252. break;
  7253. case "snf":
  7254. _formdiv = new U.UF.UI.form(
  7255. "赛诺梵",
  7256. $$("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" }), {
  7257. "id": "snf",
  7258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //创建窗体
  7263. _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); } }
  7264. break;
  7265. case "hanFamily":
  7266. _formdiv = new U.UF.UI.form(
  7267. "汉字家族",
  7268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7269. "id": "hanFamily",
  7270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //创建窗体
  7275. _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); } }
  7276. break;
  7277. case "hanClassics":
  7278. _formdiv = new U.UF.UI.form(
  7279. "国学经典",
  7280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7281. "id": "hanClassics",
  7282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //创建窗体
  7287. _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); } }
  7288. break;
  7289. case "hanTraining":
  7290. _formdiv = new U.UF.UI.form(
  7291. "笔画训练",
  7292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7293. "id": "hanTraining",
  7294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //创建窗体
  7299. _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); } }
  7300. break;
  7301. case "hanClass":
  7302. _formdiv = new U.UF.UI.form(
  7303. "书法课堂",
  7304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7305. "id": "hanClass",
  7306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. closecallback: function () { }
  7310. }, { "style": { "height": "36px" } }).form; //创建窗体
  7311. _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); } }
  7312. break;
  7313. case "han":
  7314. _formdiv = new U.UF.UI.form(
  7315. "汉字宫",
  7316. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7317. "id": "han",
  7318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7319. "onresize": function () { }
  7320. }, {
  7321. closecallback: function () { }
  7322. }, { "style": { "height": "36px" } }).form; //创建窗体
  7323. _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); } }
  7324. break;
  7325. case "projectGM": //课程管理
  7326. _formdiv = new U.UF.UI.form(
  7327. "课程管理",
  7328. $$("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 }), {
  7329. "id": "projectGM",
  7330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, { "style": { "height": "36px" } }).form; //创建窗体
  7335. _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); } }
  7336. break;
  7337. case "studyGM": //课程中心
  7338. _formdiv = new U.UF.UI.form(
  7339. "课程中心",
  7340. $$("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
  7341. "id": "study",
  7342. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, { "style": { "height": "36px" } }).form; //创建窗体
  7347. _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); } }
  7348. break;
  7349. // studentGM
  7350. case "studentGM": //学生管理
  7351. _formdiv = new U.UF.UI.form(
  7352. "学生管理",
  7353. $$("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 }), {
  7354. "id": "studentGM",
  7355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, { "style": { "height": "36px" } }).form; //创建窗体
  7360. _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); } }
  7361. break;
  7362. case "evaluateGM": //学生评价
  7363. _formdiv = new U.UF.UI.form(
  7364. "学生评价",
  7365. $$("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 }), {
  7366. "id": "evaluateGM",
  7367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, { "style": { "height": "36px" } }).form; //创建窗体
  7372. _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); } }
  7373. break;
  7374. // classGM
  7375. case "classGM": //班级管理
  7376. _formdiv = new U.UF.UI.form(
  7377. "班级管理",
  7378. $$("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 }), {
  7379. "id": "classGM",
  7380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7381. "onresize": function () { }
  7382. }, {
  7383. closecallback: function () { }
  7384. }, { "style": { "height": "36px" } }).form; //创建窗体
  7385. _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); } }
  7386. break;
  7387. // dataGM
  7388. case "dataGM":
  7389. _formdiv = new U.UF.UI.form(
  7390. "我的资料",
  7391. $$("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 }), {
  7392. "id": "dataGM",
  7393. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7394. "onresize": function () { }
  7395. }, {
  7396. closecallback: function () { }
  7397. }, { "style": { "height": "36px" } }).form; //创建窗体
  7398. _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); } }
  7399. break;
  7400. // caseGM
  7401. case "caseGM": //课程进展
  7402. _formdiv = new U.UF.UI.form(
  7403. "课程进展",
  7404. $$("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 }), {
  7405. "id": "caseGM",
  7406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, { "style": { "height": "36px" } }).form; //创建窗体
  7411. _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); } }
  7412. break;
  7413. // meterialGM
  7414. case "meterialGM": //素材库
  7415. _formdiv = new U.UF.UI.form(
  7416. "素材库",
  7417. $$("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 }), {
  7418. "id": "meterialGM",
  7419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. closecallback: function () { }
  7423. }, { "style": { "height": "36px" } }).form; //创建窗体
  7424. _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); } }
  7425. break;
  7426. // evaluateSGM
  7427. case "evaluateSGM": //我的评价
  7428. _formdiv = new U.UF.UI.form(
  7429. "我的评价",
  7430. $$("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 }), {
  7431. "id": "evaluateSGM",
  7432. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, { "style": { "height": "36px" } }).form; //创建窗体
  7437. _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); } }
  7438. break;
  7439. case "jupyter": //jupyter
  7440. _formdiv = new U.UF.UI.form(
  7441. "jupyter",
  7442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7443. "id": "jupyter",
  7444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7445. "onresize": function () { }
  7446. }, {
  7447. closecallback: function () { }
  7448. }, { "style": { "height": "36px" } }).form; //创建窗体
  7449. _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); } }
  7450. break;
  7451. case "number": //数字实验室
  7452. _formdiv = new U.UF.UI.form(
  7453. "数字实验室",
  7454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7455. "id": "number",
  7456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, { "style": { "height": "36px" } }).form; //创建窗体
  7461. _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); } }
  7462. break;
  7463. case "studentCourse": //项目管理 学生
  7464. _formdiv = new U.UF.UI.form(
  7465. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7466. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7467. "id": "studentCourse",
  7468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7469. "onresize": function () { }
  7470. }, {
  7471. closecallback: function () { }
  7472. }, { "style": { "height": "36px" } }).form; //创建窗体
  7473. _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); } }
  7474. break;
  7475. case "studentCourseS": //项目管理 老师
  7476. _formdiv = new U.UF.UI.form(
  7477. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7478. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7479. "id": "studentCourseS",
  7480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () { }
  7484. }, { "style": { "height": "36px" } }).form; //创建窗体
  7485. _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); } }
  7486. break;
  7487. case "studentIndex": //项目中心
  7488. _formdiv = new U.UF.UI.form(
  7489. "项目中心",
  7490. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7491. "id": "studentIndex",
  7492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7493. "onresize": function () { }
  7494. }, {
  7495. closecallback: function () { }
  7496. }, { "style": { "height": "36px" } }).form; //创建窗体
  7497. _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); } }
  7498. break;
  7499. case "CaseDesignS":
  7500. _formdiv = new U.UF.UI.form(
  7501. "项目进展",
  7502. $$("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 }), {
  7503. "id": "case",
  7504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7505. "onresize": function () { }
  7506. }, {
  7507. closecallback: function () { }
  7508. }, { "style": { "height": "36px" } }).form; //创建窗体
  7509. _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); } }
  7510. break;
  7511. case "tcStudent": //腾讯学生管理
  7512. _formdiv = new U.UF.UI.form(
  7513. "学生管理",
  7514. $$("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 }), {
  7515. "id": "tcStudent",
  7516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, { "style": { "height": "36px" } }).form; //创建窗体
  7521. _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); } }
  7522. break;
  7523. case "tcSchool": //腾讯学校管理
  7524. _formdiv = new U.UF.UI.form(
  7525. "学校管理",
  7526. $$("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 }), {
  7527. "id": "tcSchool",
  7528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7529. "onresize": function () { }
  7530. }, {
  7531. closecallback: function () { }
  7532. }, { "style": { "height": "36px" } }).form; //创建窗体
  7533. _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); } }
  7534. break;
  7535. case "tcTeacher": //腾讯学校管理
  7536. _formdiv = new U.UF.UI.form(
  7537. "教师管理",
  7538. $$("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 }), {
  7539. "id": "tcTeacher",
  7540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7541. "onresize": function () { }
  7542. }, {
  7543. closecallback: function () { }
  7544. }, { "style": { "height": "36px" } }).form; //创建窗体
  7545. _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); } }
  7546. break;
  7547. case "teacher":
  7548. _formdiv = new U.UF.UI.form(
  7549. "教师管理",
  7550. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7551. "id": "teacher",
  7552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7553. "onresize": function () { }
  7554. }, {
  7555. closecallback: function () { }
  7556. }, { "style": { "height": "36px" } }).form; //创建窗体
  7557. _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); } }
  7558. break;
  7559. case "tcData": //腾讯我的资料
  7560. _formdiv = new U.UF.UI.form(
  7561. "我的资料",
  7562. $$("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 }), {
  7563. "id": "tcData",
  7564. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //创建窗体
  7569. _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); } }
  7570. break;
  7571. case "tcNotice": //腾讯消息通知
  7572. _formdiv = new U.UF.UI.form(
  7573. "消息通知",
  7574. $$("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 }), {
  7575. "id": "tcNotice",
  7576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, { "style": { "height": "36px" } }).form; //创建窗体
  7581. _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); } }
  7582. break;
  7583. case "myReport": //好友打开
  7584. _formdiv = new U.UF.UI.form(
  7585. "我的评价",
  7586. $$("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 }), {
  7587. "id": "myReport",
  7588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7589. "onresize": function () { }
  7590. }, {
  7591. closecallback: function () { }
  7592. }, { "style": { "height": "36px" } }).form; //创建窗体
  7593. _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); } }
  7594. break;
  7595. case "learnAna": //好友打开
  7596. _formdiv = new U.UF.UI.form(
  7597. "学习分析",
  7598. $$("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 }), {
  7599. "id": "learnAna",
  7600. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7601. "onresize": function () { }
  7602. }, {
  7603. closecallback: function () { }
  7604. }, { "style": { "height": "36px" } }).form; //创建窗体
  7605. _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); } }
  7606. break;
  7607. case "AIChat": //AI共创
  7608. _formdiv = new U.UF.UI.form(
  7609. "AI共创",
  7610. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7611. "id": "AIChat",
  7612. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7613. "onresize": function () { }
  7614. }, {
  7615. istop: true,
  7616. closecallback: function () { $("#aichat_icon").remove(); },
  7617. narrowcallback: function () {
  7618. if (!$("#aichat_icon")[0]) {
  7619. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7620. }
  7621. },
  7622. }, { "style": { "height": "36px" } }).form; //创建窗体
  7623. _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); } }
  7624. break;
  7625. case "ainew": //AI共创
  7626. _formdiv = new U.UF.UI.form(
  7627. "AI协同",
  7628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7629. "id": "ainew",
  7630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7631. "onresize": function () { }
  7632. }, {
  7633. closecallback: function () { }
  7634. }, { "style": { "height": "36px" } }).form; //创建窗体
  7635. _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); } }
  7636. break;
  7637. case "gpt4": //gpt4
  7638. _formdiv = new U.UF.UI.form(
  7639. "AI助手",
  7640. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7641. "id": "gpt4",
  7642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7643. "onresize": function () { }
  7644. }, {
  7645. closecallback: function () { }
  7646. }, { "style": { "height": "36px" } }).form; //创建窗体
  7647. _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); } }
  7648. break;
  7649. case "aigpt": //gpt4
  7650. _formdiv = new U.UF.UI.form(
  7651. "AI助手+",
  7652. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7653. "id": "aigpt",
  7654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7655. "onresize": function () { }
  7656. }, {
  7657. closecallback: function () {
  7658. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7659. }
  7660. }, { "style": { "height": "36px" } }).form; //创建窗体
  7661. _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); } }
  7662. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7663. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7664. })
  7665. break;
  7666. case "aiKnowledge": //aiKnowledge
  7667. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7668. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7669. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7670. }
  7671. _formdiv = new U.UF.UI.form(
  7672. "知识建构",
  7673. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7674. "id": "aiKnowledge",
  7675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7676. "onresize": function () { }
  7677. }, {
  7678. closecallback: function () { }
  7679. }, { "style": { "height": "36px" } }).form; //创建窗体
  7680. _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); } }
  7681. break;
  7682. case "futureClass": //AI共创
  7683. _formdiv = new U.UF.UI.form(
  7684. "协同建构",
  7685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7686. "id": "synergyCourse",
  7687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () {
  7691. $("iframe", _formdiv)[0].contentWindow.loginout();
  7692. }
  7693. }, { "style": { "height": "36px" } }).form; //创建窗体
  7694. _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); } }
  7695. break;
  7696. case "aiagent": //ai agent
  7697. _formdiv = new U.UF.UI.form(
  7698. "AI Agent",
  7699. $$("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" }), {
  7700. "id": "AIAgent",
  7701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7702. "onresize": function () { }
  7703. }, {
  7704. closecallback: function () { }
  7705. }, { "style": { "height": "36px" } }).form; //创建窗体
  7706. _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); } }
  7707. break;
  7708. case "dataBoard": //数据看板
  7709. _formdiv = new U.UF.UI.form(
  7710. "数据看板",
  7711. $$("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 }), {
  7712. "id": "dataBoard",
  7713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, { "style": { "height": "36px" } }).form; //创建窗体
  7718. _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); } }
  7719. break;
  7720. case "dataBoardSies": //数据融合
  7721. _formdiv = new U.UF.UI.form(
  7722. "数据融合",
  7723. $$("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 }), {
  7724. "id": "dataBoardSies",
  7725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7726. "onresize": function () { }
  7727. }, {
  7728. closecallback: function () { }
  7729. }, { "style": { "height": "36px" } }).form; //创建窗体
  7730. _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); } }
  7731. break;
  7732. case "dataBoardNew": //数据看板
  7733. _formdiv = new U.UF.UI.form(
  7734. "综合看板",
  7735. $$("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 }), {
  7736. "id": "dataBoardNew",
  7737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7738. "onresize": function () { }
  7739. }, {
  7740. closecallback: function () { }
  7741. }, { "style": { "height": "36px" } }).form; //创建窗体
  7742. _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); } }
  7743. break;
  7744. case "dataBoardTest": //数据看板
  7745. _formdiv = new U.UF.UI.form(
  7746. "评测看板",
  7747. $$("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 }), {
  7748. "id": "dataBoardTest",
  7749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7750. "onresize": function () { }
  7751. }, {
  7752. closecallback: function () { }
  7753. }, { "style": { "height": "36px" } }).form; //创建窗体
  7754. _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); } }
  7755. break;
  7756. case "AIAnalyse": //AI共创
  7757. _formdiv = new U.UF.UI.form(
  7758. "AI分析",
  7759. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7760. "id": "AIAnalyse",
  7761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, { "style": { "height": "36px" } }).form; //创建窗体
  7766. _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); } }
  7767. break;
  7768. case "studioCourse": //AI共创
  7769. _formdiv = new U.UF.UI.form(
  7770. "工作管理",
  7771. $$("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 }), {
  7772. "id": "studioCourse",
  7773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7774. "onresize": function () { }
  7775. }, {
  7776. closecallback: function () { }
  7777. }, { "style": { "height": "36px" } }).form; //创建窗体
  7778. _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); } }
  7779. break;
  7780. case "studioIndex": //AI共创
  7781. _formdiv = new U.UF.UI.form(
  7782. "工作中心",
  7783. $$("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 }), {
  7784. "id": "studioIndex",
  7785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7786. "onresize": function () { }
  7787. }, {
  7788. closecallback: function () { }
  7789. }, { "style": { "height": "36px" } }).form; //创建窗体
  7790. _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); } }
  7791. break;
  7792. case "source":
  7793. _formdiv = new U.UF.UI.form(
  7794. "教学资源",
  7795. $$("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 }), {
  7796. "id": "source",
  7797. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7798. "onresize": function () { }
  7799. }, {
  7800. closecallback: function () { }
  7801. }, { "style": { "height": "36px" } }).form; //创建窗体
  7802. _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); } }
  7803. break;
  7804. case "testTeacher":
  7805. _formdiv = new U.UF.UI.form(
  7806. "智能表单",
  7807. $$("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 }), {
  7808. "id": "testTeacher",
  7809. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7810. "onresize": function () { }
  7811. }, {
  7812. closecallback: function () { }
  7813. }, { "style": { "height": "36px" } }).form; //创建窗体
  7814. _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); } }
  7815. break;
  7816. case "testStudent":
  7817. _formdiv = new U.UF.UI.form(
  7818. "教师中心",
  7819. $$("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 }), {
  7820. "id": "testStudent",
  7821. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7822. "onresize": function () { }
  7823. }, {
  7824. closecallback: function () { }
  7825. }, { "style": { "height": "36px" } }).form; //创建窗体
  7826. _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); } }
  7827. break;
  7828. case "testTeacherSies":
  7829. _formdiv = new U.UF.UI.form(
  7830. "教师管理",
  7831. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7832. "id": "testTeacherSies",
  7833. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7834. "onresize": function () { }
  7835. }, {
  7836. closecallback: function () { }
  7837. }, { "style": { "height": "36px" } }).form; //创建窗体
  7838. _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); } }
  7839. break;
  7840. case "testStudentSies":
  7841. _formdiv = new U.UF.UI.form(
  7842. "教师中心",
  7843. $$("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 }), {
  7844. "id": "testStudentSies",
  7845. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7846. "onresize": function () { }
  7847. }, {
  7848. closecallback: function () { }
  7849. }, { "style": { "height": "36px" } }).form; //创建窗体
  7850. _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); } }
  7851. break;
  7852. case "ytpbl": //消息通知
  7853. _formdiv = new U.UF.UI.form(
  7854. "案例征集",
  7855. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7856. "id": "ytpbl",
  7857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7858. "onresize": function () { }
  7859. }, {
  7860. closecallback: function () { }
  7861. }, { "style": { "height": "36px" } }).form; //创建窗体
  7862. _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); } }
  7863. // 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");
  7864. break;
  7865. case "aiCourseResource": //人工智能窗体
  7866. _formdiv = new U.UF.UI.form(
  7867. false,
  7868. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7869. "id": "aiCourseResource",
  7870. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7871. "onresize": function () { },
  7872. "isdrag": false,
  7873. }, {
  7874. closecallback: function () { }
  7875. }, { "style": { "height": "36px" } }).form; //创建窗体
  7876. _taskbar = ''
  7877. break;
  7878. case "szdjgCocooroboX": //图形化编程
  7879. _formdiv = new U.UF.UI.form(
  7880. "图形化编程",
  7881. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7882. "id": "szdjgCocooroboX",
  7883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7884. "onresize": function () { }
  7885. }, {
  7886. closecallback: function () { }
  7887. }, { "style": { "height": "36px" } }).form; //创建窗体
  7888. _taskbar = ''
  7889. break;
  7890. case "szdjgPython": //python编程
  7891. _formdiv = new U.UF.UI.form(
  7892. "Python编程",
  7893. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7894. "id": "szdjgPython",
  7895. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7896. "onresize": function () { }
  7897. }, {
  7898. closecallback: function () { }
  7899. }, { "style": { "height": "36px" } }).form; //创建窗体
  7900. _taskbar = ''
  7901. break;
  7902. case "Record":
  7903. _formdiv = new U.UF.UI.form(
  7904. "观察记录",
  7905. $$("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 }), {
  7906. "id": "Record",
  7907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7908. "onresize": function () { }
  7909. }, {
  7910. closecallback: function () { }
  7911. }, { "style": { "height": "36px" } }).form; //创建窗体
  7912. _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); } }
  7913. break;
  7914. case "aigptCourse":
  7915. _formdiv = new U.UF.UI.form(
  7916. "AI智能体",
  7917. $$("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' }), {
  7918. "id": "aigptCourse",
  7919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7920. "onresize": function () { }
  7921. }, {
  7922. closecallback: function () { }
  7923. }, { "style": { "height": "36px" } }).form; //创建窗体
  7924. _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); } }
  7925. break;
  7926. case "classroomObservation":
  7927. _formdiv = new U.UF.UI.form(
  7928. "课堂观察",
  7929. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7930. "id": "classroomObservation",
  7931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, { "style": { "height": "36px" } }).form; //创建窗体
  7936. _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); } }
  7937. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7938. break;
  7939. case "pblCourse":
  7940. _formdiv = new U.UF.UI.form(
  7941. "学生PBL",
  7942. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7943. "id": "pblCourse",
  7944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7945. "onresize": function () { }
  7946. }, {
  7947. closecallback: function () { }
  7948. }, { "style": { "height": "36px" } }).form; //创建窗体
  7949. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7950. break;
  7951. case "appStore":
  7952. U.MD.D.addOp('', 'cocoflowOpen', '')
  7953. _formdiv = new U.UF.UI.form(
  7954. "CocoFlow",
  7955. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7956. "id": "appStore",
  7957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7958. "onresize": function () { }
  7959. }, {
  7960. closecallback: function () { }
  7961. }, { "style": { "height": "36px" } }).form; //创建窗体
  7962. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7963. break;
  7964. case "sassPlatform":
  7965. _formdiv = new U.UF.UI.form(
  7966. "Sass通用后台管理",
  7967. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7968. "id": "sassPlatform",
  7969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, { "style": { "height": "36px" } }).form; //创建窗体
  7974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7975. break;
  7976. case "EDU":
  7977. _formdiv = new U.UF.UI.form(
  7978. "EDU",
  7979. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7980. "id": "EDU",
  7981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7982. "onresize": function () { }
  7983. }, {
  7984. closecallback: function () { }
  7985. }, { "style": { "height": "36px" } }).form; //创建窗体
  7986. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7987. break;
  7988. case "knowledge":
  7989. _formdiv = new U.UF.UI.form(
  7990. "知识库",
  7991. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7992. "id": "knowledge",
  7993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7994. "onresize": function () { }
  7995. }, {
  7996. closecallback: function () { }
  7997. }, { "style": { "height": "36px" } }).form; //创建窗体
  7998. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7999. break;
  8000. case "userExamine":
  8001. _formdiv = new U.UF.UI.form(
  8002. "账号申请",
  8003. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  8004. "id": "userExamine",
  8005. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  8006. "onresize": function () { }
  8007. }, {
  8008. closecallback: function () { }
  8009. }, { "style": { "height": "36px" } }).form; //创建窗体
  8010. break;
  8011. case "cocoflowDeskTop": //cocoflowDeskTop
  8012. _formdiv = new U.UF.UI.form(
  8013. false,
  8014. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  8015. "id": "cocoflowDeskTop",
  8016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8017. "onresize": function () { },
  8018. }, {
  8019. closecallback: function () { },
  8020. "isdrag": false,
  8021. }, { "style": { "height": "36px" } }).form; //创建窗体
  8022. _taskbar = ''
  8023. break;
  8024. case "liyuanLogin": //liyuanLogin
  8025. _formdiv = new U.UF.UI.form(
  8026. false,
  8027. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  8028. "id": "liyuanLogin",
  8029. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8030. "onresize": function () { },
  8031. }, {
  8032. closecallback: function () { },
  8033. isdrag: false,
  8034. isstretching: false,
  8035. isenlarge: false,
  8036. isnarrow: false
  8037. }, { "style": { "height": "36px" } }).form; //创建窗体
  8038. _taskbar = ''
  8039. break;
  8040. case "updatePaDialog":
  8041. _formdiv = new U.UF.UI.form(
  8042. "密码修改",
  8043. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  8044. "id": "updatePaDialog",
  8045. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  8046. "onresize": function () { },
  8047. }, {
  8048. closecallback: function () { },
  8049. isclose: false,
  8050. isdrag: false,
  8051. isstretching: false,
  8052. isenlarge: false,
  8053. isnarrow: false
  8054. }, { "style": { "height": "36px" } }).form; //创建窗体
  8055. break;
  8056. }
  8057. //U.MD.D.I.openClick(str);
  8058. //如果有任务栏信息
  8059. if (_taskbar) {
  8060. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8061. }
  8062. if (iframeBool) {
  8063. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  8064. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  8065. // console.log("iframe进入");
  8066. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8067. // };
  8068. setTimeout(() => {
  8069. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8070. }, 2000);
  8071. }
  8072. }
  8073. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  8074. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  8075. _userinfo = US.userInfo, //登录用户信息
  8076. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  8077. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  8078. let iframeBool = true;
  8079. let queryString = ''
  8080. if (array && array.length) {
  8081. const paramsMap = {
  8082. userid: _userid,
  8083. org: _org,
  8084. oid: _oid,
  8085. type: _type,
  8086. role: _role,
  8087. classId: _classId,
  8088. TscreenType: _TscreenType,
  8089. SscreenType: _SscreenType
  8090. };
  8091. const canshu = array
  8092. .filter(param => paramsMap[param] !== undefined)
  8093. .map(param => `${param}=${paramsMap[param]}`);
  8094. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  8095. }
  8096. let _url = url + queryString
  8097. if (U.UF.UI.form.allForm[id]) {
  8098. iframeBool = false
  8099. }
  8100. _formdiv = new U.UF.UI.form(
  8101. false,
  8102. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  8103. {
  8104. "id": id,
  8105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  8106. "onresize": function () { },
  8107. },
  8108. {
  8109. closecallback: function () { },
  8110. isdrag: false,
  8111. isstretching: false,
  8112. isenlarge: false,
  8113. isnarrow: false
  8114. },
  8115. { "style": { "height": "36px" } },
  8116. undefined,
  8117. undefined,
  8118. dom
  8119. ).form
  8120. }
  8121. // U.MD.D.I.openClick = function(str){
  8122. // var click = '';
  8123. // switch(str){
  8124. // case 'friend':
  8125. // click = '我的好友';
  8126. // break;
  8127. // case 'domain':
  8128. // click = '域名管理';
  8129. // break;
  8130. // case 'disk':
  8131. // click = '我的云盘';
  8132. // break;
  8133. // case 'word':
  8134. // click = 'Word';
  8135. // break;
  8136. // case 'excel':
  8137. // click = 'Execl';
  8138. // break;
  8139. // case 'txt':
  8140. // click = '文本文件';
  8141. // break;
  8142. // case 'lookupFriend':
  8143. // click = '查找好友';
  8144. // break;
  8145. // case 'ftp':
  8146. // click = 'FTP';
  8147. // break;
  8148. // case 'group':
  8149. // click = '群组';
  8150. // break;
  8151. // case 'set':
  8152. // click = '我的设置';
  8153. // break;
  8154. // case 'systemSet':
  8155. // click = '系统设置';
  8156. // break;
  8157. // case 'boomYun':
  8158. // click = '互联办公';
  8159. // break;
  8160. // case 'xz':
  8161. // click = '云端下载';
  8162. // break;
  8163. // case 'client':
  8164. // click = '有思浏览器';
  8165. // break;
  8166. // case 'backEndProgramming':
  8167. // click = '在线后台编程';
  8168. // break;
  8169. // case 'frontEndProgramming':
  8170. // click = '在线前端编程';
  8171. // break;
  8172. // default: break;
  8173. // }
  8174. // if(U.MD.D.I.Ip && click){
  8175. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8176. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8177. // })
  8178. // }
  8179. // }
  8180. /**
  8181. *函数作用:ajax简易函数,使用post格式
  8182. *@param url {data} 后台地址
  8183. *@param data {data} 参数json
  8184. *@param fn {data} 回调函数
  8185. *
  8186. */
  8187. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8188. // var xhr = new XMLHttpRequest();
  8189. // xhr.open("GET",url,true);
  8190. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8191. // xhr.onreadystatechange = function(){
  8192. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8193. // fn.call(this,xhr.responseText);
  8194. // }
  8195. // };
  8196. // xhr.send();
  8197. // }
  8198. /*判断是否是内网IP*/
  8199. // U.MD.D.I.isInnerIPFn = function(str){
  8200. // var curPageUrl = str;
  8201. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8202. // curPageUrl =curPageUrl.replace(reg1,'');
  8203. // // console.log('curPageUrl-1 '+curPageUrl);
  8204. // var reg2 = /\:+/g;//替换冒号为一点
  8205. // curPageUrl =curPageUrl.replace(reg2,'.');
  8206. // // console.log('curPageUrl-2 '+curPageUrl);
  8207. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8208. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8209. // if(curPageUrl[2] != '16'){
  8210. // return ipAddress;
  8211. // }else{
  8212. // return false;
  8213. // }
  8214. // }
  8215. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8216. // //compatibility for firefox and chrome
  8217. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8218. // var pc = new myPeerConnection({
  8219. // iceServers: []
  8220. // }),
  8221. // noop = function() {},
  8222. // localIPs = {},
  8223. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8224. // key;
  8225. // function iterateIP(ip) {
  8226. // if (!localIPs[ip]) onNewIP(ip);
  8227. // localIPs[ip] = true;
  8228. // }
  8229. // //create a bogus data channel
  8230. // pc.createDataChannel("");
  8231. // // create offer and set local description
  8232. // pc.createOffer().then(function(sdp) {
  8233. // sdp.sdp.split('\n').forEach(function(line) {
  8234. // if (line.indexOf('candidate') < 0) return;
  8235. // line.match(ipRegex).forEach(iterateIP);
  8236. // });
  8237. // pc.setLocalDescription(sdp, noop, noop);
  8238. // }).catch(function(reason) {
  8239. // // An error occurred, so handle the failure to connect
  8240. // });
  8241. // //sten for candidate events
  8242. // pc.onicecandidate = function(ice) {
  8243. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8244. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8245. // };
  8246. // }
  8247. // U.MD.D.I.getUserIpBool = function(callback){
  8248. // U.MD.D.I.getUserIP(function(ip){
  8249. // alert("Got IP! :" + ip);
  8250. // });
  8251. //}
  8252. //#endregion
  8253. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8254. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8255. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8256. _userinfo = US.userInfo, //登录用户信息
  8257. _userid = US.userInfo.userid //登录用户id
  8258. let _iframe;
  8259. let _cid = cid,
  8260. _stage = stage,
  8261. _task = task,
  8262. _tool = tool;
  8263. var _jie = $$("div", {
  8264. "style": {
  8265. "position": "absolute",
  8266. "bottom": "50px",
  8267. "right": "50px",
  8268. "zIndex": "9999",
  8269. "backgroundColor": "#2268bc",
  8270. "color": "#fff",
  8271. "padding": "12px 20px",
  8272. "cursor": "pointer",
  8273. "borderRadius": "4px",
  8274. },
  8275. "innerHTML": "提交作业"
  8276. })
  8277. let aTool = ''
  8278. let _loading = document.createElement('div')
  8279. _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;"
  8280. // _loading.id = "";
  8281. let _lchild = document.createElement('div')
  8282. let _limg = document.createElement('img')
  8283. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8284. _limg.style = "width: 26px;margin-right: 10px;"
  8285. _lchild.appendChild(_limg)
  8286. let _lspan = document.createElement('span')
  8287. _lspan.innerHTML = "上传中..."
  8288. _lchild.appendChild(_lspan)
  8289. _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%);"
  8290. _loading.appendChild(_lchild)
  8291. var _box = $$('div', {
  8292. "style": {
  8293. "position": "relative",
  8294. "width": "100%",
  8295. "height": "100%",
  8296. },
  8297. })
  8298. _box.appendChild(_loading)
  8299. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8300. switch (str) {
  8301. case "whiteboard":
  8302. aTool = 1;
  8303. _iframe = $$("iframe", {
  8304. "frameborder": "no",
  8305. "border": "0",
  8306. "scrolling ": "no",
  8307. "style": {
  8308. "cssText": "border:0;width:100%;height:100%"
  8309. },
  8310. "src": "https://beta.iwb.cocorobo.cn/"
  8311. })
  8312. _box.appendChild(_iframe);
  8313. _box.appendChild(_jie);
  8314. _formdiv = new U.UF.UI.form(
  8315. "电子白板",
  8316. _box, {
  8317. "id": "whiteboard" + cid + stage + task + tool,
  8318. "style": {
  8319. "width": "90%",
  8320. "height": "90%",
  8321. "overflow": 'hidden'
  8322. },
  8323. "onresize": function () { }
  8324. }, {
  8325. closecallback: function () { }
  8326. }, {
  8327. "style": {
  8328. "height": "36px"
  8329. }
  8330. }).form; //创建窗体
  8331. _taskbar = {
  8332. "id": str + _formdiv.id,
  8333. "style": {
  8334. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8335. },
  8336. "name": "电子白板",
  8337. "forms": _formdiv,
  8338. "click": function () {
  8339. U.MD.D.I.openApplication(str, obj, info);
  8340. }
  8341. }
  8342. break;
  8343. case "mind":
  8344. aTool = 3;
  8345. _iframe = $$("iframe", {
  8346. "frameborder": "no",
  8347. "border": "0",
  8348. "scrolling ": "no",
  8349. "style": {
  8350. "cssText": "border:0;width:100%;height:100%"
  8351. },
  8352. "src": "/kityminder-editor/dist/index.html"
  8353. })
  8354. _box.appendChild(_iframe);
  8355. _box.appendChild(_jie);
  8356. _formdiv = new U.UF.UI.form(
  8357. "思维导图",
  8358. _box, { //"/jsmind/example/demo.html"
  8359. "id": "mind" + cid + stage + task + tool,
  8360. "style": {
  8361. "width": "90%",
  8362. "height": "90%",
  8363. "overflow": 'hidden'
  8364. },
  8365. "onresize": function () { }
  8366. }, {
  8367. closecallback: function () { }
  8368. }, {
  8369. "style": {
  8370. "height": "36px"
  8371. }
  8372. }).form; //创建窗体
  8373. _taskbar = {
  8374. "id": str + _formdiv.id,
  8375. "style": {
  8376. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8377. },
  8378. "name": "思维导图",
  8379. "forms": _formdiv,
  8380. "click": function () {
  8381. U.MD.D.I.openApplication(str, obj, info);
  8382. }
  8383. }
  8384. break;
  8385. case "MindMap":
  8386. aTool = 3;
  8387. _iframe = $$("iframe", {
  8388. "frameborder": "no",
  8389. "border": "0",
  8390. "scrolling ": "no",
  8391. "style": {
  8392. "cssText": "border:0;width:100%;height:100%"
  8393. },
  8394. "src": "//cloud.cocorobo.cn/mind/"
  8395. })
  8396. _box.appendChild(_iframe);
  8397. _box.appendChild(_jie);
  8398. _formdiv = new U.UF.UI.form(
  8399. "思维导图",
  8400. _box, { //"/jsmind/example/demo.html"
  8401. "id": "mind" + cid + stage + task + tool,
  8402. "style": {
  8403. "width": "90%",
  8404. "height": "90%",
  8405. "overflow": 'hidden'
  8406. },
  8407. "onresize": function () { }
  8408. }, {
  8409. closecallback: function () { }
  8410. }, {
  8411. "style": {
  8412. "height": "36px"
  8413. }
  8414. }).form; //创建窗体
  8415. _taskbar = {
  8416. "id": str + _formdiv.id,
  8417. "style": {
  8418. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8419. },
  8420. "name": "思维导图",
  8421. "forms": _formdiv,
  8422. "click": function () {
  8423. U.MD.D.I.openApplication(str, obj, info);
  8424. }
  8425. }
  8426. break;
  8427. case "doc":
  8428. aTool = 6;
  8429. _iframe = $$("iframe", {
  8430. "frameborder": "no",
  8431. "border": "0",
  8432. "scrolling ": "no",
  8433. "style": {
  8434. "cssText": "border:0;width:100%;height:100%"
  8435. },
  8436. "src": "/Office/Word/WordEditArea.htm"
  8437. })
  8438. _box.appendChild(_iframe);
  8439. _box.appendChild(_jie);
  8440. _formdiv = new U.UF.UI.form(
  8441. "协同文档",
  8442. _box, {
  8443. "id": "doc" + cid + stage + task + tool,
  8444. "style": {
  8445. "width": "90%",
  8446. "height": "90%",
  8447. "overflow": 'hidden'
  8448. },
  8449. "onresize": function () { }
  8450. }, {
  8451. closecallback: function () { }
  8452. }, {
  8453. "style": {
  8454. "height": "36px"
  8455. }
  8456. }).form; //创建窗体
  8457. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8458. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8459. })
  8460. _taskbar = {
  8461. "id": str + _formdiv.id,
  8462. "style": {
  8463. "backgroundImage": "url(/img/icon/doc.png)"
  8464. },
  8465. "name": "协同文档",
  8466. "forms": _formdiv,
  8467. "click": function () {
  8468. U.MD.D.I.openApplication(str, obj, info);
  8469. }
  8470. }
  8471. break;
  8472. case "mindNetwork": //好友打开
  8473. aTool = 7;
  8474. _iframe = $$("iframe", {
  8475. "webkitallowfullscreen": "",
  8476. "mozallowfullscreen": "",
  8477. "allowfullscreen": "",
  8478. "frameborder": "no",
  8479. "border": "0",
  8480. "scrolling ": "no",
  8481. "style": {
  8482. "cssText": "border:0; width:100%; height:100%;"
  8483. },
  8484. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8485. })
  8486. _box.appendChild(_iframe);
  8487. _box.appendChild(_jie);
  8488. _formdiv = new U.UF.UI.form(
  8489. "思维网格",
  8490. _box, {
  8491. "id": "mindNetwork" + cid + stage + task + tool,
  8492. "style": {
  8493. "width": "90%",
  8494. "height": "90%",
  8495. "overflow": 'hidden'
  8496. },
  8497. "onresize": function () { }
  8498. }, {
  8499. closecallback: function () { }
  8500. }, {
  8501. "style": {
  8502. "height": "36px"
  8503. }
  8504. }).form; //创建窗体
  8505. _taskbar = {
  8506. "id": str + _formdiv.id,
  8507. "style": {
  8508. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8509. },
  8510. "name": "思维网格",
  8511. "forms": _formdiv,
  8512. "click": function () {
  8513. U.MD.D.I.openApplication(str, obj, info);
  8514. }
  8515. }
  8516. break;
  8517. case "courseDesign":
  8518. _iframe = $$("iframe", {
  8519. "webkitallowfullscreen": "",
  8520. "mozallowfullscreen": "",
  8521. "allowfullscreen": "",
  8522. "frameborder": "no",
  8523. "border": "0",
  8524. "scrolling ": "no",
  8525. "style": {
  8526. "cssText": "border:0; width:100%; height:100%;"
  8527. },
  8528. "src": "/course-design-vue"
  8529. })
  8530. _box.appendChild(_iframe);
  8531. _box.appendChild(_jie);
  8532. _formdiv = new U.UF.UI.form(
  8533. "项目设计",
  8534. _box, {
  8535. "id": "courseDesign" + cid + stage + task + tool,
  8536. "style": {
  8537. "width": "90%",
  8538. "height": "90%",
  8539. "overflow": 'hidden'
  8540. },
  8541. "onresize": function () { }
  8542. }, {
  8543. closecallback: function () { }
  8544. }, {
  8545. "style": {
  8546. "height": "36px"
  8547. }
  8548. }).form; //创建窗体
  8549. _taskbar = {
  8550. "id": str + _formdiv.id,
  8551. "style": {
  8552. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8553. },
  8554. "name": "项目设计",
  8555. "forms": _formdiv,
  8556. "click": function () {
  8557. U.MD.D.I.openApplication(str, obj, info);
  8558. }
  8559. }
  8560. break;
  8561. }
  8562. const script1 = document.createElement("script");
  8563. script1.type = "text/javascript";
  8564. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8565. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8566. const script2 = document.createElement("script");
  8567. script2.type = "text/javascript";
  8568. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8569. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8570. const script3 = document.createElement("script");
  8571. script3.type = "text/javascript";
  8572. script3.charset = "UTF-8";
  8573. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8574. const script4 = document.createElement("script");
  8575. script4.type = "text/javascript";
  8576. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8577. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8578. if (_iframe) {
  8579. if (str == 'doc') {
  8580. _iframe = _formdiv.querySelector('iframe')
  8581. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8582. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8583. _iframe.contentWindow.document.body.appendChild(script1);
  8584. _iframe.contentWindow.document.body.appendChild(script2);
  8585. // _iframe.contentWindow.document.body.appendChild(script3);
  8586. _iframe.contentWindow.document.body.appendChild(script4);
  8587. })
  8588. if (onloadListener) {
  8589. _iframe.contentDocument.location.reload()
  8590. } else {
  8591. _iframe.contentDocument.location.reload()
  8592. }
  8593. } else if (str == 'courseDesign') {
  8594. U.UF.DL.iframeLoad(_iframe, function () {
  8595. // _iframe.contentWindow.U.MD.O.W.load();
  8596. // _iframe.contentWindow.document.body.appendChild(script1);
  8597. _iframe.contentWindow.document.body.appendChild(script2);
  8598. _iframe.contentWindow.document.body.appendChild(script4);
  8599. })
  8600. } else if (str == 'mind') {
  8601. _iframe = _formdiv.querySelector('iframe')
  8602. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8603. //
  8604. _iframe.contentWindow.document.body.appendChild(script1);
  8605. _iframe.contentWindow.document.body.appendChild(script2);
  8606. _iframe.contentWindow.document.body.appendChild(script4);
  8607. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8608. })
  8609. if (onloadListener) {
  8610. _iframe.contentDocument.location.reload()
  8611. } else {
  8612. _iframe.contentDocument.location.reload()
  8613. }
  8614. } else if (str == 'whiteboard') {
  8615. _iframe = _formdiv.querySelector('iframe')
  8616. let onloadListener = _iframe.onload = () => {
  8617. _iframe.contentWindow.document.body.appendChild(script1);
  8618. _iframe.contentWindow.document.body.appendChild(script2);
  8619. _iframe.contentWindow.document.body.appendChild(script4);
  8620. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8621. };
  8622. // if (onloadListener) {
  8623. // try {
  8624. // _iframe.src += "?cocorobo="+new Date().getTime()
  8625. // _iframe.contentWindow.document.location.reload()
  8626. // } catch (error) {
  8627. // }
  8628. // } else {
  8629. // _iframe.contentDocument.location.reload()
  8630. // }
  8631. } else {
  8632. _iframe.onload = () => {
  8633. _iframe.contentWindow.document.body.appendChild(script1);
  8634. _iframe.contentWindow.document.body.appendChild(script2);
  8635. // _iframe.contentWindow.document.body.appendChild(script3);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. };
  8638. }
  8639. _jie.onclick = async () => {
  8640. let text = ''
  8641. if (aTool == 1) {
  8642. // text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8643. text = _iframe.contentWindow.h.app.scene.elements
  8644. let files = _iframe.contentWindow.h.app.files
  8645. U.MD.D.I.downloadFile2(_cid, _stage, _task, _tool, _userid, text, _loading, _lspan, files, _iframe, str)
  8646. return
  8647. } else if (aTool == 6) {
  8648. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8649. } else if (aTool == 3) {
  8650. text = await U.MD.D.I.getEditorContent(_iframe);
  8651. }
  8652. _loading.style.display = 'flex'
  8653. console.log(_loading);
  8654. var _ajs = _iframe.contentWindow.document.createElement("script");
  8655. _ajs.type = "text/javascript";
  8656. _ajs.innerHTML =
  8657. // 'console.log(' + _loading + ');\n' +
  8658. 'var _js = document.createElement("script");\n' +
  8659. '_js.type="text/javascript";\n' +
  8660. '_js.charset="UTF-8";\n' +
  8661. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8662. "_js.onload = function(){\n" +
  8663. ' var a = document.getElementsByTagName("img")\n' +
  8664. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8665. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8666. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8667. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8668. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8669. "beforeUpload_shishi(file," +
  8670. "'" +
  8671. _userid +
  8672. "'" +
  8673. ", " +
  8674. "'" +
  8675. _cid +
  8676. "'" +
  8677. ", " +
  8678. "'" +
  8679. _stage +
  8680. "'" +
  8681. ", " +
  8682. "'" +
  8683. _task +
  8684. "'" +
  8685. ", " +
  8686. "'" +
  8687. _tool +
  8688. "'" +
  8689. ", " +
  8690. "'" +
  8691. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8692. "'" +
  8693. ", " +
  8694. "'" +
  8695. aTool +
  8696. "'" +
  8697. ", " +
  8698. "`" +
  8699. text +
  8700. "`" +
  8701. ")\n" +
  8702. " });\n" +
  8703. "}\n" +
  8704. "document.head.appendChild(_js);\n";
  8705. _iframe.contentWindow.document.head.appendChild(_ajs);
  8706. }
  8707. }
  8708. //U.MD.D.I.openClick(str);
  8709. //如果有任务栏信息
  8710. // if (_taskbar) {
  8711. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8712. // }
  8713. }
  8714. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8715. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8716. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8717. _userinfo = US.userInfo, //登录用户信息
  8718. _userid = US.userInfo.userid //登录用户id
  8719. let _iframe;
  8720. let _cid = cid,
  8721. _stage = stage,
  8722. _task = task,
  8723. _tool = tool;
  8724. var _jie = $$("div", {
  8725. "style": {
  8726. "position": "absolute",
  8727. "bottom": "50px",
  8728. "right": "50px",
  8729. "zIndex": "9999",
  8730. "backgroundColor": "#2268bc",
  8731. "color": "#fff",
  8732. "padding": "12px 20px",
  8733. "cursor": "pointer",
  8734. "borderRadius": "4px",
  8735. },
  8736. "innerHTML": "提交作业"
  8737. })
  8738. let aTool = ''
  8739. let _loading = document.createElement('div')
  8740. _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;"
  8741. // _loading.id = "";
  8742. let _lchild = document.createElement('div')
  8743. let _limg = document.createElement('img')
  8744. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8745. _limg.style = "width: 26px;margin-right: 10px;"
  8746. _lchild.appendChild(_limg)
  8747. let _lspan = document.createElement('span')
  8748. _lspan.innerHTML = "上传中..."
  8749. _lchild.appendChild(_lspan)
  8750. _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%);"
  8751. _loading.appendChild(_lchild)
  8752. let _box = $$('div', {
  8753. "style": {
  8754. "position": "relative",
  8755. "width": "100%",
  8756. "height": "100%",
  8757. },
  8758. })
  8759. _box.appendChild(_loading)
  8760. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8761. switch (str) {
  8762. case "whiteboard":
  8763. aTool = 1;
  8764. _iframe = $$("iframe", {
  8765. "frameborder": "no",
  8766. "border": "0",
  8767. "scrolling ": "no",
  8768. "style": {
  8769. "cssText": "border:0;width:100%;height:100%"
  8770. },
  8771. "src": "https://beta.iwb.cocorobo.cn/"
  8772. })
  8773. _box.appendChild(_iframe);
  8774. _box.appendChild(_jie);
  8775. _formdiv = new U.UF.UI.form(
  8776. "电子白板",
  8777. _box, {
  8778. "id": "whiteboard" + cid + stage + task + tool,
  8779. "style": {
  8780. "width": "90%",
  8781. "height": "90%",
  8782. "overflow": 'hidden'
  8783. },
  8784. "onresize": function () { }
  8785. }, {
  8786. closecallback: function () { }
  8787. }, {
  8788. "style": {
  8789. "height": "36px"
  8790. }
  8791. }).form; //创建窗体
  8792. _taskbar = {
  8793. "id": str + _formdiv.id,
  8794. "style": {
  8795. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8796. },
  8797. "name": "电子白板",
  8798. "forms": _formdiv,
  8799. "click": function () {
  8800. U.MD.D.I.openApplication(str, obj, info);
  8801. }
  8802. }
  8803. break;
  8804. case "mind":
  8805. aTool = 3;
  8806. _iframe = $$("iframe", {
  8807. "frameborder": "no",
  8808. "border": "0",
  8809. "scrolling ": "no",
  8810. "style": {
  8811. "cssText": "border:0;width:100%;height:100%"
  8812. },
  8813. "src": "/kityminder-editor/dist/index.html"
  8814. })
  8815. _box.appendChild(_iframe);
  8816. _box.appendChild(_jie);
  8817. _formdiv = new U.UF.UI.form(
  8818. "思维导图",
  8819. _box, { //"/jsmind/example/demo.html"
  8820. "id": "mind" + cid + stage + task + tool,
  8821. "style": {
  8822. "width": "90%",
  8823. "height": "90%",
  8824. "overflow": 'hidden'
  8825. },
  8826. "onresize": function () { }
  8827. }, {
  8828. closecallback: function () { }
  8829. }, {
  8830. "style": {
  8831. "height": "36px"
  8832. }
  8833. }).form; //创建窗体
  8834. _taskbar = {
  8835. "id": str + _formdiv.id,
  8836. "style": {
  8837. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8838. },
  8839. "name": "思维导图",
  8840. "forms": _formdiv,
  8841. "click": function () {
  8842. U.MD.D.I.openApplication(str, obj, info);
  8843. }
  8844. }
  8845. break;
  8846. case "MindMap":
  8847. aTool = 3;
  8848. _iframe = $$("iframe", {
  8849. "frameborder": "no",
  8850. "border": "0",
  8851. "scrolling ": "no",
  8852. "style": {
  8853. "cssText": "border:0;width:100%;height:100%"
  8854. },
  8855. "src": "//cloud.cocorobo.cn/mind/"
  8856. })
  8857. _box.appendChild(_iframe);
  8858. _box.appendChild(_jie);
  8859. _formdiv = new U.UF.UI.form(
  8860. "思维导图",
  8861. _box, { //"/jsmind/example/demo.html"
  8862. "id": "mind" + cid + stage + task + tool,
  8863. "style": {
  8864. "width": "90%",
  8865. "height": "90%",
  8866. "overflow": 'hidden'
  8867. },
  8868. "onresize": function () { }
  8869. }, {
  8870. closecallback: function () { }
  8871. }, {
  8872. "style": {
  8873. "height": "36px"
  8874. }
  8875. }).form; //创建窗体
  8876. _taskbar = {
  8877. "id": str + _formdiv.id,
  8878. "style": {
  8879. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8880. },
  8881. "name": "思维导图",
  8882. "forms": _formdiv,
  8883. "click": function () {
  8884. U.MD.D.I.openApplication(str, obj, info);
  8885. }
  8886. }
  8887. break;
  8888. case "doc":
  8889. aTool = 6;
  8890. _iframe = $$("iframe", {
  8891. "frameborder": "no",
  8892. "border": "0",
  8893. "scrolling ": "no",
  8894. "style": {
  8895. "cssText": "border:0;width:100%;height:100%"
  8896. },
  8897. "src": "/Office/Word/WordEditArea.htm"
  8898. })
  8899. _box.appendChild(_iframe);
  8900. _box.appendChild(_jie);
  8901. _formdiv = new U.UF.UI.form(
  8902. "协同文档",
  8903. _box, {
  8904. "id": "doc" + cid + stage + task + tool,
  8905. "style": {
  8906. "width": "90%",
  8907. "height": "90%",
  8908. "overflow": 'hidden'
  8909. },
  8910. "onresize": function () { }
  8911. }, {
  8912. closecallback: function () { }
  8913. }, {
  8914. "style": {
  8915. "height": "36px"
  8916. }
  8917. }).form; //创建窗体
  8918. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8919. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8920. })
  8921. _taskbar = {
  8922. "id": str + _formdiv.id,
  8923. "style": {
  8924. "backgroundImage": "url(/img/icon/doc.png)"
  8925. },
  8926. "name": "协同文档",
  8927. "forms": _formdiv,
  8928. "click": function () {
  8929. U.MD.D.I.openApplication(str, obj, info);
  8930. }
  8931. }
  8932. break;
  8933. case "mindNetwork": //好友打开
  8934. aTool = 7;
  8935. _iframe = $$("iframe", {
  8936. "webkitallowfullscreen": "",
  8937. "mozallowfullscreen": "",
  8938. "allowfullscreen": "",
  8939. "frameborder": "no",
  8940. "border": "0",
  8941. "scrolling ": "no",
  8942. "style": {
  8943. "cssText": "border:0; width:100%; height:100%;"
  8944. },
  8945. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8946. })
  8947. _box.appendChild(_iframe);
  8948. _box.appendChild(_jie);
  8949. _formdiv = new U.UF.UI.form(
  8950. "思维网格",
  8951. _box, {
  8952. "id": "mindNetwork" + cid + stage + task + tool,
  8953. "style": {
  8954. "width": "90%",
  8955. "height": "90%",
  8956. "overflow": 'hidden'
  8957. },
  8958. "onresize": function () { }
  8959. }, {
  8960. closecallback: function () { }
  8961. }, {
  8962. "style": {
  8963. "height": "36px"
  8964. }
  8965. }).form; //创建窗体
  8966. _taskbar = {
  8967. "id": str + _formdiv.id,
  8968. "style": {
  8969. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8970. },
  8971. "name": "思维网格",
  8972. "forms": _formdiv,
  8973. "click": function () {
  8974. U.MD.D.I.openApplication(str, obj, info);
  8975. }
  8976. }
  8977. break;
  8978. case "courseDesign":
  8979. _iframe = $$("iframe", {
  8980. "webkitallowfullscreen": "",
  8981. "mozallowfullscreen": "",
  8982. "allowfullscreen": "",
  8983. "frameborder": "no",
  8984. "border": "0",
  8985. "scrolling ": "no",
  8986. "style": {
  8987. "cssText": "border:0; width:100%; height:100%;"
  8988. },
  8989. "src": "/course-design-vue"
  8990. })
  8991. _box.appendChild(_iframe);
  8992. _box.appendChild(_jie);
  8993. _formdiv = new U.UF.UI.form(
  8994. "项目设计",
  8995. _box, {
  8996. "id": "courseDesign" + cid + stage + task + tool,
  8997. "style": {
  8998. "width": "90%",
  8999. "height": "90%",
  9000. "overflow": 'hidden'
  9001. },
  9002. "onresize": function () { }
  9003. }, {
  9004. closecallback: function () { }
  9005. }, {
  9006. "style": {
  9007. "height": "36px"
  9008. }
  9009. }).form; //创建窗体
  9010. _taskbar = {
  9011. "id": str + _formdiv.id,
  9012. "style": {
  9013. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9014. },
  9015. "name": "项目设计",
  9016. "forms": _formdiv,
  9017. "click": function () {
  9018. U.MD.D.I.openApplication(str, obj, info);
  9019. }
  9020. }
  9021. break;
  9022. }
  9023. const script1 = document.createElement("script");
  9024. script1.type = "text/javascript";
  9025. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9026. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9027. const script2 = document.createElement("script");
  9028. script2.type = "text/javascript";
  9029. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9030. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9031. const script3 = document.createElement("script");
  9032. script3.type = "text/javascript";
  9033. script3.charset = "UTF-8";
  9034. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9035. const script4 = document.createElement("script");
  9036. script4.type = "text/javascript";
  9037. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9038. script4.src = window.origin + "/js/Common/jietu2E.js";
  9039. if (_iframe) {
  9040. if (str == 'doc') {
  9041. _iframe = _formdiv.querySelector('iframe')
  9042. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9043. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9044. _iframe.contentWindow.document.body.appendChild(script1);
  9045. _iframe.contentWindow.document.body.appendChild(script2);
  9046. // _iframe.contentWindow.document.body.appendChild(script3);
  9047. _iframe.contentWindow.document.body.appendChild(script4);
  9048. })
  9049. if (onloadListener) {
  9050. _iframe.contentDocument.location.reload()
  9051. } else {
  9052. _iframe.contentDocument.location.reload()
  9053. }
  9054. } else if (str == 'courseDesign') {
  9055. U.UF.DL.iframeLoad(_iframe, function () {
  9056. // _iframe.contentWindow.U.MD.O.W.load();
  9057. // _iframe.contentWindow.document.body.appendChild(script1);
  9058. _iframe.contentWindow.document.body.appendChild(script2);
  9059. _iframe.contentWindow.document.body.appendChild(script4);
  9060. })
  9061. } else if (str == 'mind') {
  9062. _iframe = _formdiv.querySelector('iframe')
  9063. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9064. //
  9065. _iframe.contentWindow.document.body.appendChild(script1);
  9066. _iframe.contentWindow.document.body.appendChild(script2);
  9067. _iframe.contentWindow.document.body.appendChild(script4);
  9068. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9069. })
  9070. if (onloadListener) {
  9071. _iframe.contentDocument.location.reload()
  9072. } else {
  9073. _iframe.contentDocument.location.reload()
  9074. }
  9075. } else if (str == 'whiteboard') {
  9076. _iframe = _formdiv.querySelector('iframe')
  9077. let onloadListener = _iframe.onload = () => {
  9078. _iframe.contentWindow.document.body.appendChild(script1);
  9079. _iframe.contentWindow.document.body.appendChild(script2);
  9080. _iframe.contentWindow.document.body.appendChild(script4);
  9081. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9082. };
  9083. // if (onloadListener) {
  9084. // try {
  9085. // _iframe.src += "?cocorobo="+new Date().getTime()
  9086. // _iframe.contentWindow.document.location.reload()
  9087. // } catch (error) {
  9088. // }
  9089. // } else {
  9090. // _iframe.contentDocument.location.reload()
  9091. // }
  9092. } else {
  9093. _iframe.onload = () => {
  9094. _iframe.contentWindow.document.body.appendChild(script1);
  9095. _iframe.contentWindow.document.body.appendChild(script2);
  9096. // _iframe.contentWindow.document.body.appendChild(script3);
  9097. _iframe.contentWindow.document.body.appendChild(script4);
  9098. };
  9099. }
  9100. _jie.onclick = async () => {
  9101. let text = ''
  9102. if (aTool == 1) {
  9103. // text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9104. text = _iframe.contentWindow.h.app.scene.elements
  9105. let files = _iframe.contentWindow.h.app.files
  9106. U.MD.D.I.downloadFile2(_cid, _stage, _task, _tool, _userid, text, _loading, _lspan, files, _iframe, str)
  9107. return
  9108. } else if (aTool == 6) {
  9109. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9110. } else if (aTool == 3) {
  9111. text = await U.MD.D.I.getEditorContent(_iframe);
  9112. }
  9113. _loading.style.display = 'flex'
  9114. console.log(_loading);
  9115. var _ajs = _iframe.contentWindow.document.createElement("script");
  9116. _ajs.type = "text/javascript";
  9117. _ajs.innerHTML =
  9118. // 'console.log(' + _loading + ');\n' +
  9119. 'var _js = document.createElement("script");\n' +
  9120. '_js.type="text/javascript";\n' +
  9121. '_js.charset="UTF-8";\n' +
  9122. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9123. "_js.onload = function(){\n" +
  9124. ' var a = document.getElementsByTagName("img")\n' +
  9125. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9126. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9127. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9128. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9129. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9130. "beforeUpload_shishi(file," +
  9131. "'" +
  9132. _userid +
  9133. "'" +
  9134. ", " +
  9135. "'" +
  9136. _cid +
  9137. "'" +
  9138. ", " +
  9139. "'" +
  9140. _stage +
  9141. "'" +
  9142. ", " +
  9143. "'" +
  9144. _task +
  9145. "'" +
  9146. ", " +
  9147. "'" +
  9148. _tool +
  9149. "'" +
  9150. ", " +
  9151. "'" +
  9152. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  9153. "'" +
  9154. ", " +
  9155. "'" +
  9156. aTool +
  9157. "'" +
  9158. ", " +
  9159. "`" +
  9160. text +
  9161. "`" +
  9162. ")\n" +
  9163. " });\n" +
  9164. "}\n" +
  9165. "document.head.appendChild(_js);\n";
  9166. _iframe.contentWindow.document.head.appendChild(_ajs);
  9167. }
  9168. }
  9169. //U.MD.D.I.openClick(str);
  9170. //如果有任务栏信息
  9171. // if (_taskbar) {
  9172. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9173. // }
  9174. }
  9175. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  9176. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9177. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9178. _userid = student.userid, //登录用户id
  9179. _username = student.student //用户名字
  9180. let _iframe;
  9181. let _cid = cid,
  9182. _stage = stage,
  9183. _task = task,
  9184. _tool = tool;
  9185. var _jie = $$("div", {
  9186. "style": {
  9187. "position": "absolute",
  9188. "bottom": "50px",
  9189. "right": "50px",
  9190. "zIndex": "9999",
  9191. "backgroundColor": "#2268bc",
  9192. "color": "#fff",
  9193. "padding": "12px 20px",
  9194. "cursor": "pointer",
  9195. "borderRadius": "4px",
  9196. },
  9197. "innerHTML": "提交作业"
  9198. })
  9199. let aTool = ''
  9200. let _loading = document.createElement('div')
  9201. _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;"
  9202. // _loading.id = "";
  9203. let _lchild = document.createElement('div')
  9204. let _limg = document.createElement('img')
  9205. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9206. _limg.style = "width: 26px;margin-right: 10px;"
  9207. _lchild.appendChild(_limg)
  9208. let _lspan = document.createElement('span')
  9209. _lspan.innerHTML = "上传中..."
  9210. _lchild.appendChild(_lspan)
  9211. _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%);"
  9212. _loading.appendChild(_lchild)
  9213. var _box = $$('div', {
  9214. "style": {
  9215. "position": "relative",
  9216. "width": "100%",
  9217. "height": "100%",
  9218. },
  9219. })
  9220. _box.appendChild(_loading)
  9221. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9222. switch (str) {
  9223. case "whiteboard":
  9224. aTool = 1;
  9225. _iframe = $$("iframe", {
  9226. "frameborder": "no",
  9227. "border": "0",
  9228. "scrolling ": "no",
  9229. "style": {
  9230. "cssText": "border:0;width:100%;height:100%"
  9231. },
  9232. "src": "https://beta.iwb.cocorobo.cn/"
  9233. })
  9234. _box.appendChild(_iframe);
  9235. _box.appendChild(_jie);
  9236. _formdiv = new U.UF.UI.form(
  9237. "电子白板-" + _username,
  9238. _box, {
  9239. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9240. "style": {
  9241. "width": "90%",
  9242. "height": "90%",
  9243. "overflow": 'hidden'
  9244. },
  9245. "onresize": function () { }
  9246. }, {
  9247. closecallback: function () { }
  9248. }, {
  9249. "style": {
  9250. "height": "36px"
  9251. }
  9252. }).form; //创建窗体
  9253. _taskbar = {
  9254. "id": str + _formdiv.id,
  9255. "style": {
  9256. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9257. },
  9258. "name": "电子白板",
  9259. "forms": _formdiv,
  9260. "click": function () {
  9261. U.MD.D.I.openApplication(str, obj, info);
  9262. }
  9263. }
  9264. break;
  9265. case "mind":
  9266. aTool = 3;
  9267. _iframe = $$("iframe", {
  9268. "frameborder": "no",
  9269. "border": "0",
  9270. "scrolling ": "no",
  9271. "style": {
  9272. "cssText": "border:0;width:100%;height:100%"
  9273. },
  9274. "src": "/kityminder-editor/dist/index.html"
  9275. })
  9276. _box.appendChild(_iframe);
  9277. _box.appendChild(_jie);
  9278. _formdiv = new U.UF.UI.form(
  9279. "思维导图-" + _username,
  9280. _box, { //"/jsmind/example/demo.html"
  9281. "id": "mind" + cid + stage + task + tool + _userid,
  9282. "style": {
  9283. "width": "90%",
  9284. "height": "90%",
  9285. "overflow": 'hidden'
  9286. },
  9287. "onresize": function () { }
  9288. }, {
  9289. closecallback: function () { }
  9290. }, {
  9291. "style": {
  9292. "height": "36px"
  9293. }
  9294. }).form; //创建窗体
  9295. _taskbar = {
  9296. "id": str + _formdiv.id,
  9297. "style": {
  9298. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9299. },
  9300. "name": "思维导图",
  9301. "forms": _formdiv,
  9302. "click": function () {
  9303. U.MD.D.I.openApplication(str, obj, info);
  9304. }
  9305. }
  9306. break;
  9307. case "MindMap":
  9308. aTool = 3;
  9309. _iframe = $$("iframe", {
  9310. "frameborder": "no",
  9311. "border": "0",
  9312. "scrolling ": "no",
  9313. "style": {
  9314. "cssText": "border:0;width:100%;height:100%"
  9315. },
  9316. "src": "//cloud.cocorobo.cn/mind/"
  9317. })
  9318. _box.appendChild(_iframe);
  9319. _box.appendChild(_jie);
  9320. _formdiv = new U.UF.UI.form(
  9321. "思维导图-" + _username,
  9322. _box, { //"/jsmind/example/demo.html"
  9323. "id": "mind" + cid + stage + task + tool + _userid,
  9324. "style": {
  9325. "width": "90%",
  9326. "height": "90%",
  9327. "overflow": 'hidden'
  9328. },
  9329. "onresize": function () { }
  9330. }, {
  9331. closecallback: function () { }
  9332. }, {
  9333. "style": {
  9334. "height": "36px"
  9335. }
  9336. }).form; //创建窗体
  9337. _taskbar = {
  9338. "id": str + _formdiv.id,
  9339. "style": {
  9340. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9341. },
  9342. "name": "思维导图",
  9343. "forms": _formdiv,
  9344. "click": function () {
  9345. U.MD.D.I.openApplication(str, obj, info);
  9346. }
  9347. }
  9348. break;
  9349. case "doc":
  9350. aTool = 6;
  9351. _iframe = $$("iframe", {
  9352. "frameborder": "no",
  9353. "border": "0",
  9354. "scrolling ": "no",
  9355. "style": {
  9356. "cssText": "border:0;width:100%;height:100%"
  9357. },
  9358. "src": "/Office/Word/WordEditArea.htm"
  9359. })
  9360. _box.appendChild(_iframe);
  9361. _box.appendChild(_jie);
  9362. _formdiv = new U.UF.UI.form(
  9363. "协同文档-" + _username,
  9364. _box, {
  9365. "id": "doc" + cid + stage + task + tool + _userid,
  9366. "style": {
  9367. "width": "90%",
  9368. "height": "90%",
  9369. "overflow": 'hidden'
  9370. },
  9371. "onresize": function () { }
  9372. }, {
  9373. closecallback: function () { }
  9374. }, {
  9375. "style": {
  9376. "height": "36px"
  9377. }
  9378. }).form; //创建窗体
  9379. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9380. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9381. })
  9382. _taskbar = {
  9383. "id": str + _formdiv.id,
  9384. "style": {
  9385. "backgroundImage": "url(/img/icon/doc.png)"
  9386. },
  9387. "name": "协同文档",
  9388. "forms": _formdiv,
  9389. "click": function () {
  9390. U.MD.D.I.openApplication(str, obj, info);
  9391. }
  9392. }
  9393. break;
  9394. case "mindNetwork": //好友打开
  9395. aTool = 7;
  9396. _iframe = $$("iframe", {
  9397. "webkitallowfullscreen": "",
  9398. "mozallowfullscreen": "",
  9399. "allowfullscreen": "",
  9400. "frameborder": "no",
  9401. "border": "0",
  9402. "scrolling ": "no",
  9403. "style": {
  9404. "cssText": "border:0; width:100%; height:100%;"
  9405. },
  9406. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9407. })
  9408. _box.appendChild(_iframe);
  9409. _box.appendChild(_jie);
  9410. _formdiv = new U.UF.UI.form(
  9411. "思维网格-" + _username,
  9412. _box, {
  9413. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9414. "style": {
  9415. "width": "90%",
  9416. "height": "90%",
  9417. "overflow": 'hidden'
  9418. },
  9419. "onresize": function () { }
  9420. }, {
  9421. closecallback: function () { }
  9422. }, {
  9423. "style": {
  9424. "height": "36px"
  9425. }
  9426. }).form; //创建窗体
  9427. _taskbar = {
  9428. "id": str + _formdiv.id,
  9429. "style": {
  9430. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9431. },
  9432. "name": "思维网格",
  9433. "forms": _formdiv,
  9434. "click": function () {
  9435. U.MD.D.I.openApplication(str, obj, info);
  9436. }
  9437. }
  9438. break;
  9439. case "courseDesign":
  9440. _iframe = $$("iframe", {
  9441. "webkitallowfullscreen": "",
  9442. "mozallowfullscreen": "",
  9443. "allowfullscreen": "",
  9444. "frameborder": "no",
  9445. "border": "0",
  9446. "scrolling ": "no",
  9447. "style": {
  9448. "cssText": "border:0; width:100%; height:100%;"
  9449. },
  9450. "src": "/course-design-vue"
  9451. })
  9452. _box.appendChild(_iframe);
  9453. _box.appendChild(_jie);
  9454. _formdiv = new U.UF.UI.form(
  9455. "项目设计-" + _username,
  9456. _box, {
  9457. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9458. "style": {
  9459. "width": "90%",
  9460. "height": "90%",
  9461. "overflow": 'hidden'
  9462. },
  9463. "onresize": function () { }
  9464. }, {
  9465. closecallback: function () { }
  9466. }, {
  9467. "style": {
  9468. "height": "36px"
  9469. }
  9470. }).form; //创建窗体
  9471. _taskbar = {
  9472. "id": str + _formdiv.id,
  9473. "style": {
  9474. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9475. },
  9476. "name": "项目设计",
  9477. "forms": _formdiv,
  9478. "click": function () {
  9479. U.MD.D.I.openApplication(str, obj, info);
  9480. }
  9481. }
  9482. break;
  9483. }
  9484. const script1 = document.createElement("script");
  9485. script1.type = "text/javascript";
  9486. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9487. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9488. const script2 = document.createElement("script");
  9489. script2.type = "text/javascript";
  9490. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9491. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9492. const script3 = document.createElement("script");
  9493. script3.type = "text/javascript";
  9494. script3.charset = "UTF-8";
  9495. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9496. const script4 = document.createElement("script");
  9497. script4.type = "text/javascript";
  9498. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9499. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9500. if (_iframe) {
  9501. if (str == 'doc') {
  9502. _iframe = _formdiv.querySelector('iframe')
  9503. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9504. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9505. _iframe.contentWindow.document.body.appendChild(script1);
  9506. _iframe.contentWindow.document.body.appendChild(script2);
  9507. // _iframe.contentWindow.document.body.appendChild(script3);
  9508. _iframe.contentWindow.document.body.appendChild(script4);
  9509. })
  9510. if (onloadListener) {
  9511. _iframe.contentDocument.location.reload()
  9512. } else {
  9513. _iframe.contentDocument.location.reload()
  9514. }
  9515. } else if (str == 'courseDesign') {
  9516. U.UF.DL.iframeLoad(_iframe, function () {
  9517. // _iframe.contentWindow.U.MD.O.W.load();
  9518. // _iframe.contentWindow.document.body.appendChild(script1);
  9519. _iframe.contentWindow.document.body.appendChild(script2);
  9520. _iframe.contentWindow.document.body.appendChild(script4);
  9521. })
  9522. } else if (str == 'mind') {
  9523. _iframe = _formdiv.querySelector('iframe')
  9524. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9525. //
  9526. _iframe.contentWindow.document.body.appendChild(script1);
  9527. _iframe.contentWindow.document.body.appendChild(script2);
  9528. _iframe.contentWindow.document.body.appendChild(script4);
  9529. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9530. })
  9531. if (onloadListener) {
  9532. _iframe.contentDocument.location.reload()
  9533. } else {
  9534. _iframe.contentDocument.location.reload()
  9535. }
  9536. } else if (str == 'whiteboard') {
  9537. _iframe = _formdiv.querySelector('iframe')
  9538. let onloadListener = _iframe.onload = () => {
  9539. _iframe.contentWindow.document.body.appendChild(script1);
  9540. _iframe.contentWindow.document.body.appendChild(script2);
  9541. _iframe.contentWindow.document.body.appendChild(script4);
  9542. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9543. };
  9544. // if (onloadListener) {
  9545. // try {
  9546. // _iframe.src += "?cocorobo="+new Date().getTime()
  9547. // _iframe.contentWindow.document.location.reload()
  9548. // } catch (error) {
  9549. // }
  9550. // } else {
  9551. // _iframe.contentDocument.location.reload()
  9552. // }
  9553. } else {
  9554. _iframe.onload = () => {
  9555. _iframe.contentWindow.document.body.appendChild(script1);
  9556. _iframe.contentWindow.document.body.appendChild(script2);
  9557. // _iframe.contentWindow.document.body.appendChild(script3);
  9558. _iframe.contentWindow.document.body.appendChild(script4);
  9559. };
  9560. }
  9561. _jie.onclick = async () => {
  9562. let text = ''
  9563. if (aTool == 1) {
  9564. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9565. } else if (aTool == 6) {
  9566. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9567. } else if (aTool == 3) {
  9568. text = await U.MD.D.I.getEditorContent(_iframe);
  9569. }
  9570. _loading.style.display = 'flex'
  9571. console.log(_loading);
  9572. var _ajs = _iframe.contentWindow.document.createElement("script");
  9573. _ajs.type = "text/javascript";
  9574. _ajs.innerHTML =
  9575. // 'console.log(' + _loading + ');\n' +
  9576. 'var _js = document.createElement("script");\n' +
  9577. '_js.type="text/javascript";\n' +
  9578. '_js.charset="UTF-8";\n' +
  9579. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9580. "_js.onload = function(){\n" +
  9581. ' var a = document.getElementsByTagName("img")\n' +
  9582. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9583. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9584. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9585. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9586. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9587. "beforeUpload_shishi(file," +
  9588. "'" +
  9589. _userid +
  9590. "'" +
  9591. ", " +
  9592. "'" +
  9593. _cid +
  9594. "'" +
  9595. ", " +
  9596. "'" +
  9597. _stage +
  9598. "'" +
  9599. ", " +
  9600. "'" +
  9601. _task +
  9602. "'" +
  9603. ", " +
  9604. "'" +
  9605. _tool +
  9606. "'" +
  9607. ", " +
  9608. "'" +
  9609. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9610. "'" +
  9611. ", " +
  9612. "'" +
  9613. aTool +
  9614. "'" +
  9615. ", " +
  9616. "`" +
  9617. text +
  9618. "`" +
  9619. ")\n" +
  9620. " });\n" +
  9621. "}\n" +
  9622. "document.head.appendChild(_js);\n";
  9623. _iframe.contentWindow.document.head.appendChild(_ajs);
  9624. }
  9625. }
  9626. }
  9627. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9628. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9629. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9630. _userid = student.userid, //登录用户id
  9631. _username = student.student //用户名字
  9632. let _iframe;
  9633. let _cid = cid,
  9634. _stage = stage,
  9635. _task = task,
  9636. _tool = tool;
  9637. var _jie = $$("div", {
  9638. "style": {
  9639. "position": "absolute",
  9640. "bottom": "50px",
  9641. "right": "50px",
  9642. "zIndex": "9999",
  9643. "backgroundColor": "#2268bc",
  9644. "color": "#fff",
  9645. "padding": "12px 20px",
  9646. "cursor": "pointer",
  9647. "borderRadius": "4px",
  9648. },
  9649. "innerHTML": "提交作业"
  9650. })
  9651. let aTool = ''
  9652. let _loading = document.createElement('div')
  9653. _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;"
  9654. // _loading.id = "";
  9655. let _lchild = document.createElement('div')
  9656. let _limg = document.createElement('img')
  9657. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9658. _limg.style = "width: 26px;margin-right: 10px;"
  9659. _lchild.appendChild(_limg)
  9660. let _lspan = document.createElement('span')
  9661. _lspan.innerHTML = "上传中..."
  9662. _lchild.appendChild(_lspan)
  9663. _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%);"
  9664. _loading.appendChild(_lchild)
  9665. var _box = $$('div', {
  9666. "style": {
  9667. "position": "relative",
  9668. "width": "100%",
  9669. "height": "100%",
  9670. },
  9671. })
  9672. _box.appendChild(_loading)
  9673. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9674. switch (str) {
  9675. case "whiteboard":
  9676. aTool = 1;
  9677. _iframe = $$("iframe", {
  9678. "frameborder": "no",
  9679. "border": "0",
  9680. "scrolling ": "no",
  9681. "style": {
  9682. "cssText": "border:0;width:100%;height:100%"
  9683. },
  9684. "src": "https://beta.iwb.cocorobo.cn/"
  9685. })
  9686. _box.appendChild(_iframe);
  9687. _box.appendChild(_jie);
  9688. _formdiv = new U.UF.UI.form(
  9689. "电子白板-" + _username,
  9690. _box, {
  9691. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9692. "style": {
  9693. "width": "90%",
  9694. "height": "90%",
  9695. "overflow": 'hidden'
  9696. },
  9697. "onresize": function () { }
  9698. }, {
  9699. closecallback: function () { }
  9700. }, {
  9701. "style": {
  9702. "height": "36px"
  9703. }
  9704. }).form; //创建窗体
  9705. _taskbar = {
  9706. "id": str + _formdiv.id,
  9707. "style": {
  9708. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9709. },
  9710. "name": "电子白板",
  9711. "forms": _formdiv,
  9712. "click": function () {
  9713. U.MD.D.I.openApplication(str, obj, info);
  9714. }
  9715. }
  9716. break;
  9717. case "mind":
  9718. aTool = 3;
  9719. _iframe = $$("iframe", {
  9720. "frameborder": "no",
  9721. "border": "0",
  9722. "scrolling ": "no",
  9723. "style": {
  9724. "cssText": "border:0;width:100%;height:100%"
  9725. },
  9726. "src": "/kityminder-editor/dist/index.html"
  9727. })
  9728. _box.appendChild(_iframe);
  9729. _box.appendChild(_jie);
  9730. _formdiv = new U.UF.UI.form(
  9731. "思维导图-" + _username,
  9732. _box, { //"/jsmind/example/demo.html"
  9733. "id": "mind" + cid + stage + task + tool + _userid,
  9734. "style": {
  9735. "width": "90%",
  9736. "height": "90%",
  9737. "overflow": 'hidden'
  9738. },
  9739. "onresize": function () { }
  9740. }, {
  9741. closecallback: function () { }
  9742. }, {
  9743. "style": {
  9744. "height": "36px"
  9745. }
  9746. }).form; //创建窗体
  9747. _taskbar = {
  9748. "id": str + _formdiv.id,
  9749. "style": {
  9750. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9751. },
  9752. "name": "思维导图",
  9753. "forms": _formdiv,
  9754. "click": function () {
  9755. U.MD.D.I.openApplication(str, obj, info);
  9756. }
  9757. }
  9758. break;
  9759. case "MindMap":
  9760. aTool = 3;
  9761. _iframe = $$("iframe", {
  9762. "frameborder": "no",
  9763. "border": "0",
  9764. "scrolling ": "no",
  9765. "style": {
  9766. "cssText": "border:0;width:100%;height:100%"
  9767. },
  9768. "src": "//cloud.cocorobo.cn/mind/"
  9769. })
  9770. _box.appendChild(_iframe);
  9771. _box.appendChild(_jie);
  9772. _formdiv = new U.UF.UI.form(
  9773. "思维导图-" + _username,
  9774. _box, { //"/jsmind/example/demo.html"
  9775. "id": "mind" + cid + stage + task + tool + _userid,
  9776. "style": {
  9777. "width": "90%",
  9778. "height": "90%",
  9779. "overflow": 'hidden'
  9780. },
  9781. "onresize": function () { }
  9782. }, {
  9783. closecallback: function () { }
  9784. }, {
  9785. "style": {
  9786. "height": "36px"
  9787. }
  9788. }).form; //创建窗体
  9789. _taskbar = {
  9790. "id": str + _formdiv.id,
  9791. "style": {
  9792. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9793. },
  9794. "name": "思维导图",
  9795. "forms": _formdiv,
  9796. "click": function () {
  9797. U.MD.D.I.openApplication(str, obj, info);
  9798. }
  9799. }
  9800. break;
  9801. case "doc":
  9802. aTool = 6;
  9803. _iframe = $$("iframe", {
  9804. "frameborder": "no",
  9805. "border": "0",
  9806. "scrolling ": "no",
  9807. "style": {
  9808. "cssText": "border:0;width:100%;height:100%"
  9809. },
  9810. "src": "/Office/Word/WordEditArea.htm"
  9811. })
  9812. _box.appendChild(_iframe);
  9813. _box.appendChild(_jie);
  9814. _formdiv = new U.UF.UI.form(
  9815. "协同文档-" + _username,
  9816. _box, {
  9817. "id": "doc" + cid + stage + task + tool + _userid,
  9818. "style": {
  9819. "width": "90%",
  9820. "height": "90%",
  9821. "overflow": 'hidden'
  9822. },
  9823. "onresize": function () { }
  9824. }, {
  9825. closecallback: function () { }
  9826. }, {
  9827. "style": {
  9828. "height": "36px"
  9829. }
  9830. }).form; //创建窗体
  9831. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9832. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9833. })
  9834. _taskbar = {
  9835. "id": str + _formdiv.id,
  9836. "style": {
  9837. "backgroundImage": "url(/img/icon/doc.png)"
  9838. },
  9839. "name": "协同文档",
  9840. "forms": _formdiv,
  9841. "click": function () {
  9842. U.MD.D.I.openApplication(str, obj, info);
  9843. }
  9844. }
  9845. break;
  9846. case "mindNetwork": //好友打开
  9847. aTool = 7;
  9848. _iframe = $$("iframe", {
  9849. "webkitallowfullscreen": "",
  9850. "mozallowfullscreen": "",
  9851. "allowfullscreen": "",
  9852. "frameborder": "no",
  9853. "border": "0",
  9854. "scrolling ": "no",
  9855. "style": {
  9856. "cssText": "border:0; width:100%; height:100%;"
  9857. },
  9858. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9859. })
  9860. _box.appendChild(_iframe);
  9861. _box.appendChild(_jie);
  9862. _formdiv = new U.UF.UI.form(
  9863. "思维网格-" + _username,
  9864. _box, {
  9865. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9866. "style": {
  9867. "width": "90%",
  9868. "height": "90%",
  9869. "overflow": 'hidden'
  9870. },
  9871. "onresize": function () { }
  9872. }, {
  9873. closecallback: function () { }
  9874. }, {
  9875. "style": {
  9876. "height": "36px"
  9877. }
  9878. }).form; //创建窗体
  9879. _taskbar = {
  9880. "id": str + _formdiv.id,
  9881. "style": {
  9882. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9883. },
  9884. "name": "思维网格",
  9885. "forms": _formdiv,
  9886. "click": function () {
  9887. U.MD.D.I.openApplication(str, obj, info);
  9888. }
  9889. }
  9890. break;
  9891. case "courseDesign":
  9892. _iframe = $$("iframe", {
  9893. "webkitallowfullscreen": "",
  9894. "mozallowfullscreen": "",
  9895. "allowfullscreen": "",
  9896. "frameborder": "no",
  9897. "border": "0",
  9898. "scrolling ": "no",
  9899. "style": {
  9900. "cssText": "border:0; width:100%; height:100%;"
  9901. },
  9902. "src": "/course-design-vue"
  9903. })
  9904. _box.appendChild(_iframe);
  9905. _box.appendChild(_jie);
  9906. _formdiv = new U.UF.UI.form(
  9907. "项目设计-" + _username,
  9908. _box, {
  9909. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9910. "style": {
  9911. "width": "90%",
  9912. "height": "90%",
  9913. "overflow": 'hidden'
  9914. },
  9915. "onresize": function () { }
  9916. }, {
  9917. closecallback: function () { }
  9918. }, {
  9919. "style": {
  9920. "height": "36px"
  9921. }
  9922. }).form; //创建窗体
  9923. _taskbar = {
  9924. "id": str + _formdiv.id,
  9925. "style": {
  9926. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9927. },
  9928. "name": "项目设计",
  9929. "forms": _formdiv,
  9930. "click": function () {
  9931. U.MD.D.I.openApplication(str, obj, info);
  9932. }
  9933. }
  9934. break;
  9935. }
  9936. const script1 = document.createElement("script");
  9937. script1.type = "text/javascript";
  9938. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9939. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9940. const script2 = document.createElement("script");
  9941. script2.type = "text/javascript";
  9942. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9943. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9944. const script3 = document.createElement("script");
  9945. script3.type = "text/javascript";
  9946. script3.charset = "UTF-8";
  9947. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9948. const script4 = document.createElement("script");
  9949. script4.type = "text/javascript";
  9950. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9951. script4.src = window.origin + "/js/Common/jietu2E.js";
  9952. if (_iframe) {
  9953. if (str == 'doc') {
  9954. _iframe = _formdiv.querySelector('iframe')
  9955. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9956. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9957. _iframe.contentWindow.document.body.appendChild(script1);
  9958. _iframe.contentWindow.document.body.appendChild(script2);
  9959. // _iframe.contentWindow.document.body.appendChild(script3);
  9960. _iframe.contentWindow.document.body.appendChild(script4);
  9961. })
  9962. if (onloadListener) {
  9963. _iframe.contentDocument.location.reload()
  9964. } else {
  9965. _iframe.contentDocument.location.reload()
  9966. }
  9967. } else if (str == 'courseDesign') {
  9968. U.UF.DL.iframeLoad(_iframe, function () {
  9969. // _iframe.contentWindow.U.MD.O.W.load();
  9970. // _iframe.contentWindow.document.body.appendChild(script1);
  9971. _iframe.contentWindow.document.body.appendChild(script2);
  9972. _iframe.contentWindow.document.body.appendChild(script4);
  9973. })
  9974. } else if (str == 'mind') {
  9975. _iframe = _formdiv.querySelector('iframe')
  9976. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9977. //
  9978. _iframe.contentWindow.document.body.appendChild(script1);
  9979. _iframe.contentWindow.document.body.appendChild(script2);
  9980. _iframe.contentWindow.document.body.appendChild(script4);
  9981. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9982. })
  9983. if (onloadListener) {
  9984. _iframe.contentDocument.location.reload()
  9985. } else {
  9986. _iframe.contentDocument.location.reload()
  9987. }
  9988. } else if (str == 'whiteboard') {
  9989. _iframe = _formdiv.querySelector('iframe')
  9990. let onloadListener = _iframe.onload = () => {
  9991. _iframe.contentWindow.document.body.appendChild(script1);
  9992. _iframe.contentWindow.document.body.appendChild(script2);
  9993. _iframe.contentWindow.document.body.appendChild(script4);
  9994. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9995. };
  9996. // if (onloadListener) {
  9997. // try {
  9998. // _iframe.src += "?cocorobo="+new Date().getTime()
  9999. // _iframe.contentWindow.document.location.reload()
  10000. // } catch (error) {
  10001. // }
  10002. // } else {
  10003. // _iframe.contentDocument.location.reload()
  10004. // }
  10005. } else {
  10006. _iframe.onload = () => {
  10007. _iframe.contentWindow.document.body.appendChild(script1);
  10008. _iframe.contentWindow.document.body.appendChild(script2);
  10009. // _iframe.contentWindow.document.body.appendChild(script3);
  10010. _iframe.contentWindow.document.body.appendChild(script4);
  10011. };
  10012. }
  10013. _jie.onclick = async () => {
  10014. let text = ''
  10015. if (aTool == 1) {
  10016. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10017. } else if (aTool == 6) {
  10018. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10019. } else if (aTool == 3) {
  10020. text = await U.MD.D.I.getEditorContent(_iframe);
  10021. }
  10022. _loading.style.display = 'flex'
  10023. console.log(_loading);
  10024. var _ajs = _iframe.contentWindow.document.createElement("script");
  10025. _ajs.type = "text/javascript";
  10026. _ajs.innerHTML =
  10027. // 'console.log(' + _loading + ');\n' +
  10028. 'var _js = document.createElement("script");\n' +
  10029. '_js.type="text/javascript";\n' +
  10030. '_js.charset="UTF-8";\n' +
  10031. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10032. "_js.onload = function(){\n" +
  10033. ' var a = document.getElementsByTagName("img")\n' +
  10034. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10035. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10036. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10037. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10038. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10039. "beforeUpload_shishi(file," +
  10040. "'" +
  10041. _userid +
  10042. "'" +
  10043. ", " +
  10044. "'" +
  10045. _cid +
  10046. "'" +
  10047. ", " +
  10048. "'" +
  10049. _stage +
  10050. "'" +
  10051. ", " +
  10052. "'" +
  10053. _task +
  10054. "'" +
  10055. ", " +
  10056. "'" +
  10057. _tool +
  10058. "'" +
  10059. ", " +
  10060. "'" +
  10061. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  10062. "'" +
  10063. ", " +
  10064. "'" +
  10065. aTool +
  10066. "'" +
  10067. ", " +
  10068. "`" +
  10069. text +
  10070. "`" +
  10071. ")\n" +
  10072. " });\n" +
  10073. "}\n" +
  10074. "document.head.appendChild(_js);\n";
  10075. _iframe.contentWindow.document.head.appendChild(_ajs);
  10076. }
  10077. }
  10078. }
  10079. U.MD.D.I.getEditorContent = function (iframe) {
  10080. return new Promise((resolve, reject) => {
  10081. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  10082. console.log(content);
  10083. resolve(content)
  10084. });
  10085. });
  10086. }
  10087. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  10088. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  10089. // if (res.value[0].length > 0) {
  10090. // // resolve(res.value[0][0].text);
  10091. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  10092. // $(fileInput).val('');
  10093. // });
  10094. // }
  10095. // }, [], { "type": "GET", "withCredentials": true });
  10096. var xmlhttp;
  10097. var Mac, Sn, DeviceId
  10098. if (window.XMLHttpRequest) {
  10099. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10100. xmlhttp = new XMLHttpRequest();
  10101. } else {
  10102. // IE6, IE5 浏览器执行代码
  10103. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10104. }
  10105. xmlhttp.onreadystatechange = function () {
  10106. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10107. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10108. // resolve(res.value[0][0].text);
  10109. if (type == '2') {
  10110. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10111. } else if (type == '3') {
  10112. // iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10113. let text = JSON.parse(JSON.parse(xmlhttp.response)[0][0].text)
  10114. // 如果是数组或含有 elements 并且 elements 是数组
  10115. let updateSceneData;
  10116. if ((Array.isArray(text)) || (text && Array.isArray(text.elements))) {
  10117. if (Array.isArray(text)) {
  10118. // 兼容原有结构:仅为数组时
  10119. updateSceneData = { elements: text };
  10120. } else {
  10121. // 有 elements 和可能的 files 字段时,直接传递整个对象
  10122. updateSceneData = { ...text };
  10123. }
  10124. } else if (text && (text.elements || text.files)) {
  10125. updateSceneData = { ...text };
  10126. } else {
  10127. // fallback 兼容早期意外结构,作为 elements
  10128. updateSceneData = { elements: text };
  10129. }
  10130. // 检查 files 字段,若为 jsonObject 且含有 dataURL,将 dataURL 网络地址转为 base64
  10131. if (updateSceneData && updateSceneData.files && typeof updateSceneData.files === 'object' && !Array.isArray(updateSceneData.files)) {
  10132. const files = updateSceneData.files;
  10133. const fileKeys = Object.keys(files);
  10134. let promises = [];
  10135. let needConvert = false;
  10136. fileKeys.forEach(key => {
  10137. let file = files[key];
  10138. if (file && file.dataURL && typeof file.dataURL === 'string' && file.dataURL.startsWith('http')) {
  10139. // 是网络地址,需转换
  10140. needConvert = true;
  10141. let p = fetch(file.dataURL)
  10142. .then(res => res.blob())
  10143. .then(blob => {
  10144. return new Promise(resolve => {
  10145. const reader = new FileReader();
  10146. reader.onloadend = function () {
  10147. // data:[mime];base64,...
  10148. const base64 = reader.result;
  10149. file.dataURL = base64;
  10150. resolve();
  10151. };
  10152. reader.readAsDataURL(blob);
  10153. });
  10154. });
  10155. promises.push(p);
  10156. }
  10157. });
  10158. if (needConvert && promises.length > 0) {
  10159. Promise.all(promises).then(() => {
  10160. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10161. iframe.contentWindow.h.app.files = { ...iframe.contentWindow.h.app.files, ...updateSceneData.files };
  10162. });
  10163. } else {
  10164. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10165. }
  10166. } else {
  10167. iframe.contentWindow.h.app.updateScene(updateSceneData);
  10168. }
  10169. }
  10170. } else {
  10171. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  10172. }
  10173. }
  10174. }
  10175. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10176. xmlhttp.send();
  10177. }
  10178. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  10179. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10180. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10181. _userinfo = US.userInfo, //登录用户信息
  10182. _userid = US.userInfo.userid //登录用户id
  10183. let _iframe;
  10184. let _cid = cid,
  10185. _stage = stage,
  10186. _task = task,
  10187. _tool = tool;
  10188. var _jie = $$("div", {
  10189. "style": {
  10190. "position": "absolute",
  10191. "bottom": "50px",
  10192. "right": "50px",
  10193. "zIndex": "9999",
  10194. "backgroundColor": "#2268bc",
  10195. "color": "#fff",
  10196. "padding": "12px 20px",
  10197. "cursor": "pointer",
  10198. "borderRadius": "4px",
  10199. },
  10200. "innerHTML": "确认并提交"
  10201. })
  10202. let aTool = ''
  10203. let _loading = document.createElement('div')
  10204. _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;"
  10205. // _loading.id = "";
  10206. let _lchild = document.createElement('div')
  10207. let _limg = document.createElement('img')
  10208. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10209. _limg.style = "width: 26px;margin-right: 10px;"
  10210. _lchild.appendChild(_limg)
  10211. let _lspan = document.createElement('span')
  10212. _lspan.innerHTML = "上传中..."
  10213. _lchild.appendChild(_lspan)
  10214. _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%);"
  10215. _loading.appendChild(_lchild)
  10216. var _box = $$('div', {
  10217. "style": {
  10218. "position": "relative",
  10219. "width": "100%",
  10220. "height": "100%",
  10221. },
  10222. })
  10223. _box.appendChild(_loading)
  10224. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  10225. switch (str) {
  10226. case "whiteboard":
  10227. aTool = 1;
  10228. _iframe = $$("iframe", {
  10229. "frameborder": "no",
  10230. "border": "0",
  10231. "scrolling ": "no",
  10232. "style": {
  10233. "cssText": "border:0;width:100%;height:100%"
  10234. },
  10235. "src": "https://beta.iwb.cocorobo.cn/"
  10236. })
  10237. _box.appendChild(_iframe);
  10238. _box.appendChild(_jie);
  10239. _formdiv = new U.UF.UI.form(
  10240. "电子白板",
  10241. _box, {
  10242. "id": "whiteboards" + cid + stage + task + tool,
  10243. "style": {
  10244. "width": "90%",
  10245. "height": "90%",
  10246. "overflow": 'hidden'
  10247. },
  10248. "onresize": function () { }
  10249. }, {
  10250. closecallback: function () { }
  10251. }, {
  10252. "style": {
  10253. "height": "36px"
  10254. }
  10255. }).form; //创建窗体
  10256. _taskbar = {
  10257. "id": str + _formdiv.id,
  10258. "style": {
  10259. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10260. },
  10261. "name": "电子白板",
  10262. "forms": _formdiv,
  10263. "click": function () {
  10264. U.MD.D.I.openApplication(str, obj, info);
  10265. }
  10266. }
  10267. break;
  10268. case "mind":
  10269. aTool = 3;
  10270. _iframe = $$("iframe", {
  10271. "frameborder": "no",
  10272. "border": "0",
  10273. "scrolling ": "no",
  10274. "style": {
  10275. "cssText": "border:0;width:100%;height:100%"
  10276. },
  10277. "src": "/kityminder-editor/dist/index.html"
  10278. });
  10279. _box.appendChild(_iframe);
  10280. _box.appendChild(_jie);
  10281. _formdiv = new U.UF.UI.form(
  10282. "思维导图",
  10283. _box, { //"/jsmind/example/demo.html"
  10284. "id": "minds" + cid + stage + task + tool,
  10285. "style": {
  10286. "width": "90%",
  10287. "height": "90%",
  10288. "overflow": 'hidden'
  10289. },
  10290. "onresize": function () { }
  10291. }, {
  10292. closecallback: function () { }
  10293. }, {
  10294. "style": {
  10295. "height": "36px"
  10296. }
  10297. }).form; //创建窗体
  10298. _taskbar = {
  10299. "id": str + _formdiv.id,
  10300. "style": {
  10301. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10302. },
  10303. "name": "思维导图",
  10304. "forms": _formdiv,
  10305. "click": function () {
  10306. U.MD.D.I.openApplication(str, obj, info);
  10307. }
  10308. }
  10309. break;
  10310. case "doc":
  10311. aTool = 6;
  10312. _iframe = $$("iframe", {
  10313. "frameborder": "no",
  10314. "border": "0",
  10315. "scrolling ": "no",
  10316. "style": {
  10317. "cssText": "border:0;width:100%;height:100%"
  10318. },
  10319. "src": "/Office/Word/WordEditArea.htm"
  10320. })
  10321. _box.appendChild(_iframe);
  10322. _box.appendChild(_jie);
  10323. _formdiv = new U.UF.UI.form(
  10324. "协同文档",
  10325. _box, {
  10326. "id": "docs" + cid + stage + task + tool,
  10327. "style": {
  10328. "width": "90%",
  10329. "height": "90%",
  10330. "overflow": 'hidden'
  10331. },
  10332. "onresize": function () { }
  10333. }, {
  10334. closecallback: function () { }
  10335. }, {
  10336. "style": {
  10337. "height": "36px"
  10338. }
  10339. }).form; //创建窗体
  10340. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10341. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10342. })
  10343. _taskbar = {
  10344. "id": str + _formdiv.id,
  10345. "style": {
  10346. "backgroundImage": "url(/img/icon/doc.png)"
  10347. },
  10348. "name": "协同文档",
  10349. "forms": _formdiv,
  10350. "click": function () {
  10351. U.MD.D.I.openApplication(str, obj, info);
  10352. }
  10353. }
  10354. break;
  10355. }
  10356. const script1 = document.createElement("script");
  10357. script1.type = "text/javascript";
  10358. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10359. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10360. const script2 = document.createElement("script");
  10361. script2.type = "text/javascript";
  10362. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10363. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10364. const script3 = document.createElement("script");
  10365. script3.type = "text/javascript";
  10366. script3.charset = "UTF-8";
  10367. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10368. const script4 = document.createElement("script");
  10369. script4.type = "text/javascript";
  10370. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10371. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10372. if (_iframe) {
  10373. if (str == 'doc') {
  10374. _iframe = _formdiv.querySelector('iframe')
  10375. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10376. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10377. _iframe.contentWindow.document.body.appendChild(script1);
  10378. _iframe.contentWindow.document.body.appendChild(script2);
  10379. // _iframe.contentWindow.document.body.appendChild(script3);
  10380. _iframe.contentWindow.document.body.appendChild(script4);
  10381. })
  10382. if (onloadListener) {
  10383. _iframe.contentDocument.location.reload()
  10384. } else {
  10385. _iframe.contentDocument.location.reload()
  10386. }
  10387. } else if (str == 'mind') {
  10388. _iframe = _formdiv.querySelector('iframe')
  10389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10390. _iframe.contentWindow.document.body.appendChild(script1);
  10391. _iframe.contentWindow.document.body.appendChild(script2);
  10392. _iframe.contentWindow.document.body.appendChild(script4);
  10393. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10394. })
  10395. if (onloadListener) {
  10396. _iframe.contentDocument.location.reload()
  10397. } else {
  10398. _iframe.contentDocument.location.reload()
  10399. }
  10400. } else {
  10401. _iframe.onload = () => {
  10402. _iframe.contentWindow.document.body.appendChild(script1);
  10403. _iframe.contentWindow.document.body.appendChild(script2);
  10404. // _iframe.contentWindow.document.body.appendChild(script3);
  10405. _iframe.contentWindow.document.body.appendChild(script4);
  10406. };
  10407. }
  10408. _jie.onclick = async () => {
  10409. let text = ''
  10410. if (aTool == 6) {
  10411. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10412. } else if (aTool == 3) {
  10413. text = await U.MD.D.I.getEditorContent(_iframe);
  10414. }
  10415. _loading.style.display = 'flex'
  10416. console.log(_loading);
  10417. var _ajs = _iframe.contentWindow.document.createElement("script");
  10418. _ajs.type = "text/javascript";
  10419. _ajs.innerHTML =
  10420. // 'console.log(' + _loading + ');\n' +
  10421. 'var _js = document.createElement("script");\n' +
  10422. '_js.type="text/javascript";\n' +
  10423. '_js.charset="UTF-8";\n' +
  10424. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10425. "_js.onload = function(){\n" +
  10426. ' var a = document.getElementsByTagName("img")\n' +
  10427. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10428. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10429. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10430. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10431. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10432. "beforeUpload_shishi(file," +
  10433. "'" +
  10434. _userid +
  10435. "'" +
  10436. ", " +
  10437. "'" +
  10438. _cid +
  10439. "'" +
  10440. ", " +
  10441. "'" +
  10442. _stage +
  10443. "'" +
  10444. ", " +
  10445. "'" +
  10446. _task +
  10447. "'" +
  10448. ", " +
  10449. "'" +
  10450. _tool +
  10451. "'" +
  10452. ", " +
  10453. "'" +
  10454. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10455. "'" +
  10456. ", " +
  10457. "'" +
  10458. aTool +
  10459. "'" +
  10460. ", " +
  10461. "`" +
  10462. text +
  10463. "`" +
  10464. ")\n" +
  10465. " });\n" +
  10466. "}\n" +
  10467. "document.head.appendChild(_js);\n";
  10468. _iframe.contentWindow.document.head.appendChild(_ajs);
  10469. }
  10470. }
  10471. //U.MD.D.I.openClick(str);
  10472. //如果有任务栏信息
  10473. // if (_taskbar) {
  10474. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10475. // }
  10476. }
  10477. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10478. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10479. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10480. _userinfo = US.userInfo, //登录用户信息
  10481. _userid = US.userInfo.userid //登录用户id
  10482. let _iframe;
  10483. let _cid = cid,
  10484. _stage = stage,
  10485. _task = task,
  10486. _tool = tool;
  10487. var _jie = $$("div", {
  10488. "style": {
  10489. "position": "absolute",
  10490. "bottom": "50px",
  10491. "right": "50px",
  10492. "zIndex": "9999",
  10493. "backgroundColor": "#2268bc",
  10494. "color": "#fff",
  10495. "padding": "12px 20px",
  10496. "cursor": "pointer",
  10497. "borderRadius": "4px",
  10498. },
  10499. "innerHTML": "确认并提交"
  10500. })
  10501. let aTool = ''
  10502. let _loading = document.createElement('div')
  10503. _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;"
  10504. // _loading.id = "";
  10505. let _lchild = document.createElement('div')
  10506. let _limg = document.createElement('img')
  10507. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10508. _limg.style = "width: 26px;margin-right: 10px;"
  10509. _lchild.appendChild(_limg)
  10510. let _lspan = document.createElement('span')
  10511. _lspan.innerHTML = "上传中..."
  10512. _lchild.appendChild(_lspan)
  10513. _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%);"
  10514. _loading.appendChild(_lchild)
  10515. var _box = $$('div', {
  10516. "style": {
  10517. "position": "relative",
  10518. "width": "100%",
  10519. "height": "100%",
  10520. },
  10521. })
  10522. _box.appendChild(_loading)
  10523. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10524. switch (str) {
  10525. case "whiteboard":
  10526. aTool = 1;
  10527. _iframe = $$("iframe", {
  10528. "frameborder": "no",
  10529. "border": "0",
  10530. "scrolling ": "no",
  10531. "style": {
  10532. "cssText": "border:0;width:100%;height:100%"
  10533. },
  10534. "src": "https://beta.iwb.cocorobo.cn/"
  10535. })
  10536. _box.appendChild(_iframe);
  10537. _box.appendChild(_jie);
  10538. _formdiv = new U.UF.UI.form(
  10539. "电子白板",
  10540. _box, {
  10541. "id": "whiteboards" + cid + stage + task + tool,
  10542. "style": {
  10543. "width": "90%",
  10544. "height": "90%",
  10545. "overflow": 'hidden'
  10546. },
  10547. "onresize": function () { }
  10548. }, {
  10549. closecallback: function () { }
  10550. }, {
  10551. "style": {
  10552. "height": "36px"
  10553. }
  10554. }).form; //创建窗体
  10555. _taskbar = {
  10556. "id": str + _formdiv.id,
  10557. "style": {
  10558. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10559. },
  10560. "name": "电子白板",
  10561. "forms": _formdiv,
  10562. "click": function () {
  10563. U.MD.D.I.openApplication(str, obj, info);
  10564. }
  10565. }
  10566. break;
  10567. case "mind":
  10568. aTool = 3;
  10569. _iframe = $$("iframe", {
  10570. "frameborder": "no",
  10571. "border": "0",
  10572. "scrolling ": "no",
  10573. "style": {
  10574. "cssText": "border:0;width:100%;height:100%"
  10575. },
  10576. "src": "/kityminder-editor/dist/index.html"
  10577. });
  10578. _box.appendChild(_iframe);
  10579. _box.appendChild(_jie);
  10580. _formdiv = new U.UF.UI.form(
  10581. "思维导图",
  10582. _box, { //"/jsmind/example/demo.html"
  10583. "id": "minds" + cid + stage + task + tool,
  10584. "style": {
  10585. "width": "90%",
  10586. "height": "90%",
  10587. "overflow": 'hidden'
  10588. },
  10589. "onresize": function () { }
  10590. }, {
  10591. closecallback: function () { }
  10592. }, {
  10593. "style": {
  10594. "height": "36px"
  10595. }
  10596. }).form; //创建窗体
  10597. _taskbar = {
  10598. "id": str + _formdiv.id,
  10599. "style": {
  10600. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10601. },
  10602. "name": "思维导图",
  10603. "forms": _formdiv,
  10604. "click": function () {
  10605. U.MD.D.I.openApplication(str, obj, info);
  10606. }
  10607. }
  10608. break;
  10609. case "doc":
  10610. aTool = 6;
  10611. _iframe = $$("iframe", {
  10612. "frameborder": "no",
  10613. "border": "0",
  10614. "scrolling ": "no",
  10615. "style": {
  10616. "cssText": "border:0;width:100%;height:100%"
  10617. },
  10618. "src": "/Office/Word/WordEditArea.htm"
  10619. })
  10620. _box.appendChild(_iframe);
  10621. _box.appendChild(_jie);
  10622. _formdiv = new U.UF.UI.form(
  10623. "协同文档",
  10624. _box, {
  10625. "id": "docs" + cid + stage + task + tool,
  10626. "style": {
  10627. "width": "90%",
  10628. "height": "90%",
  10629. "overflow": 'hidden'
  10630. },
  10631. "onresize": function () { }
  10632. }, {
  10633. closecallback: function () { }
  10634. }, {
  10635. "style": {
  10636. "height": "36px"
  10637. }
  10638. }).form; //创建窗体
  10639. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10640. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10641. })
  10642. _taskbar = {
  10643. "id": str + _formdiv.id,
  10644. "style": {
  10645. "backgroundImage": "url(/img/icon/doc.png)"
  10646. },
  10647. "name": "协同文档",
  10648. "forms": _formdiv,
  10649. "click": function () {
  10650. U.MD.D.I.openApplication(str, obj, info);
  10651. }
  10652. }
  10653. break;
  10654. }
  10655. const script1 = document.createElement("script");
  10656. script1.type = "text/javascript";
  10657. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10658. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10659. const script2 = document.createElement("script");
  10660. script2.type = "text/javascript";
  10661. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10662. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10663. const script3 = document.createElement("script");
  10664. script3.type = "text/javascript";
  10665. script3.charset = "UTF-8";
  10666. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10667. const script4 = document.createElement("script");
  10668. script4.type = "text/javascript";
  10669. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10670. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10671. if (_iframe) {
  10672. if (str == 'doc') {
  10673. _iframe = _formdiv.querySelector('iframe')
  10674. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10675. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10676. _iframe.contentWindow.document.body.appendChild(script1);
  10677. _iframe.contentWindow.document.body.appendChild(script2);
  10678. // _iframe.contentWindow.document.body.appendChild(script3);
  10679. _iframe.contentWindow.document.body.appendChild(script4);
  10680. })
  10681. if (onloadListener) {
  10682. _iframe.contentDocument.location.reload()
  10683. } else {
  10684. _iframe.contentDocument.location.reload()
  10685. }
  10686. } else if (str == 'mind') {
  10687. _iframe = _formdiv.querySelector('iframe')
  10688. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10689. _iframe.contentWindow.document.body.appendChild(script1);
  10690. _iframe.contentWindow.document.body.appendChild(script2);
  10691. _iframe.contentWindow.document.body.appendChild(script4);
  10692. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10693. })
  10694. if (onloadListener) {
  10695. _iframe.contentDocument.location.reload()
  10696. } else {
  10697. _iframe.contentDocument.location.reload()
  10698. }
  10699. } else {
  10700. _iframe.onload = () => {
  10701. _iframe.contentWindow.document.body.appendChild(script1);
  10702. _iframe.contentWindow.document.body.appendChild(script2);
  10703. // _iframe.contentWindow.document.body.appendChild(script3);
  10704. _iframe.contentWindow.document.body.appendChild(script4);
  10705. };
  10706. }
  10707. _jie.onclick = async () => {
  10708. let text = ''
  10709. if (aTool == 6) {
  10710. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10711. } else if (aTool == 3) {
  10712. text = await U.MD.D.I.getEditorContent(_iframe);
  10713. }
  10714. _loading.style.display = 'flex'
  10715. console.log(_loading);
  10716. var _ajs = _iframe.contentWindow.document.createElement("script");
  10717. _ajs.type = "text/javascript";
  10718. _ajs.innerHTML =
  10719. // 'console.log(' + _loading + ');\n' +
  10720. 'var _js = document.createElement("script");\n' +
  10721. '_js.type="text/javascript";\n' +
  10722. '_js.charset="UTF-8";\n' +
  10723. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10724. "_js.onload = function(){\n" +
  10725. ' var a = document.getElementsByTagName("img")\n' +
  10726. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10727. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10728. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10729. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10730. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10731. "beforeUpload_shishi(file," +
  10732. "'" +
  10733. _userid +
  10734. "'" +
  10735. ", " +
  10736. "'" +
  10737. _cid +
  10738. "'" +
  10739. ", " +
  10740. "'" +
  10741. _stage +
  10742. "'" +
  10743. ", " +
  10744. "'" +
  10745. _task +
  10746. "'" +
  10747. ", " +
  10748. "'" +
  10749. _tool +
  10750. "'" +
  10751. ", " +
  10752. "'" +
  10753. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10754. "'" +
  10755. ", " +
  10756. "'" +
  10757. aTool +
  10758. "'" +
  10759. ", " +
  10760. "`" +
  10761. text +
  10762. "`" +
  10763. ")\n" +
  10764. " });\n" +
  10765. "}\n" +
  10766. "document.head.appendChild(_js);\n";
  10767. _iframe.contentWindow.document.head.appendChild(_ajs);
  10768. }
  10769. }
  10770. //U.MD.D.I.openClick(str);
  10771. //如果有任务栏信息
  10772. // if (_taskbar) {
  10773. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10774. // }
  10775. }
  10776. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10777. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10778. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10779. _userinfo = US.userInfo, //登录用户信息
  10780. _userid = US.userInfo.userid //登录用户id
  10781. let _iframe;
  10782. let _cid = cid,
  10783. _stage = stage,
  10784. _task = task,
  10785. _tool = tool;
  10786. var _jie = $$("div", {
  10787. "style": {
  10788. "position": "absolute",
  10789. "bottom": "50px",
  10790. "right": "50px",
  10791. "zIndex": "9999",
  10792. "backgroundColor": "#2268bc",
  10793. "color": "#fff",
  10794. "padding": "12px 20px",
  10795. "cursor": "pointer",
  10796. "borderRadius": "4px",
  10797. },
  10798. "innerHTML": "上传模板"
  10799. })
  10800. let aTool = ''
  10801. let _loading = document.createElement('div')
  10802. _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;"
  10803. // _loading.id = "";
  10804. let _lchild = document.createElement('div')
  10805. let _limg = document.createElement('img')
  10806. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10807. _limg.style = "width: 26px;margin-right: 10px;"
  10808. _lchild.appendChild(_limg)
  10809. let _lspan = document.createElement('span')
  10810. _lspan.innerHTML = "上传中..."
  10811. _lchild.appendChild(_lspan)
  10812. _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%);"
  10813. _loading.appendChild(_lchild)
  10814. var _box = $$('div', {
  10815. "style": {
  10816. "position": "relative",
  10817. "width": "100%",
  10818. "height": "100%",
  10819. },
  10820. })
  10821. _box.appendChild(_loading)
  10822. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10823. switch (str) {
  10824. case "whiteboard":
  10825. aTool = 1;
  10826. _iframe = $$("iframe", {
  10827. "frameborder": "no",
  10828. "border": "0",
  10829. "scrolling ": "no",
  10830. "style": {
  10831. "cssText": "border:0;width:100%;height:100%"
  10832. },
  10833. "src": "https://beta.iwb.cocorobo.cn/"
  10834. })
  10835. _box.appendChild(_iframe);
  10836. _box.appendChild(_jie);
  10837. _formdiv = new U.UF.UI.form(
  10838. "电子白板",
  10839. _box, {
  10840. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10841. "style": {
  10842. "width": "90%",
  10843. "height": "90%",
  10844. "overflow": 'hidden'
  10845. },
  10846. "onresize": function () { }
  10847. }, {
  10848. closecallback: function () { }
  10849. }, {
  10850. "style": {
  10851. "height": "36px"
  10852. }
  10853. }).form; //创建窗体
  10854. _taskbar = {
  10855. "id": str + _formdiv.id,
  10856. "style": {
  10857. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10858. },
  10859. "name": "电子白板",
  10860. "forms": _formdiv,
  10861. "click": function () {
  10862. U.MD.D.I.openApplication(str, obj, info);
  10863. }
  10864. }
  10865. break;
  10866. case "mind":
  10867. aTool = 3;
  10868. _iframe = $$("iframe", {
  10869. "frameborder": "no",
  10870. "border": "0",
  10871. "scrolling ": "no",
  10872. "style": {
  10873. "cssText": "border:0;width:100%;height:100%"
  10874. },
  10875. "src": "/kityminder-editor/dist/index.html"
  10876. });
  10877. _box.appendChild(_iframe);
  10878. _box.appendChild(_jie);
  10879. _formdiv = new U.UF.UI.form(
  10880. "思维导图",
  10881. _box, { //"/jsmind/example/demo.html"
  10882. "id": "minds_Yu" + cid + stage + task + tool,
  10883. "style": {
  10884. "width": "90%",
  10885. "height": "90%",
  10886. "overflow": 'hidden'
  10887. },
  10888. "onresize": function () { }
  10889. }, {
  10890. closecallback: function () { }
  10891. }, {
  10892. "style": {
  10893. "height": "36px"
  10894. }
  10895. }).form; //创建窗体
  10896. _taskbar = {
  10897. "id": str + _formdiv.id,
  10898. "style": {
  10899. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10900. },
  10901. "name": "思维导图",
  10902. "forms": _formdiv,
  10903. "click": function () {
  10904. U.MD.D.I.openApplication(str, obj, info);
  10905. }
  10906. }
  10907. break;
  10908. case "doc":
  10909. aTool = 6;
  10910. _iframe = $$("iframe", {
  10911. "frameborder": "no",
  10912. "border": "0",
  10913. "scrolling ": "no",
  10914. "style": {
  10915. "cssText": "border:0;width:100%;height:100%"
  10916. },
  10917. "src": "/Office/Word/WordEditArea.htm"
  10918. })
  10919. _box.appendChild(_iframe);
  10920. _box.appendChild(_jie);
  10921. _formdiv = new U.UF.UI.form(
  10922. "协同文档",
  10923. _box, {
  10924. "id": "docs_Yu" + cid + stage + task + tool,
  10925. "style": {
  10926. "width": "90%",
  10927. "height": "90%",
  10928. "overflow": 'hidden'
  10929. },
  10930. "onresize": function () { }
  10931. }, {
  10932. closecallback: function () { }
  10933. }, {
  10934. "style": {
  10935. "height": "36px"
  10936. }
  10937. }).form; //创建窗体
  10938. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10939. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10940. })
  10941. _taskbar = {
  10942. "id": str + _formdiv.id,
  10943. "style": {
  10944. "backgroundImage": "url(/img/icon/doc.png)"
  10945. },
  10946. "name": "协同文档",
  10947. "forms": _formdiv,
  10948. "click": function () {
  10949. U.MD.D.I.openApplication(str, obj, info);
  10950. }
  10951. }
  10952. break;
  10953. case "CocoPi":
  10954. aTool = 57;
  10955. _iframe = $$("iframe", {
  10956. "allowpaymentrequest": "allowpaymentrequest",
  10957. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  10958. "webkitallowfullscreen": "",
  10959. "mozallowfullscreen": "",
  10960. "frameborder": "no",
  10961. "border": "0",
  10962. "scrolling ": "no",
  10963. "style": {
  10964. "cssText": "border:0;width:100%;height:100%"
  10965. },
  10966. "src": "https://pi.cocorobo.cn/"
  10967. })
  10968. _box.appendChild(_iframe);
  10969. _box.appendChild(_jie);
  10970. _formdiv = new U.UF.UI.form(
  10971. "CocoPi",
  10972. _box, {
  10973. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10974. "style": {
  10975. "width": "90%",
  10976. "height": "90%",
  10977. "overflow": 'hidden'
  10978. },
  10979. "onresize": function () { }
  10980. }, {
  10981. closecallback: function () { }
  10982. }, {
  10983. "style": {
  10984. "height": "36px"
  10985. }
  10986. }).form; //创建窗体
  10987. _taskbar = {
  10988. "id": str + _formdiv.id,
  10989. "style": {
  10990. "backgroundImage": "url(/img/icon/cocopi.png)"
  10991. },
  10992. "name": "CocoPi",
  10993. "forms": _formdiv,
  10994. "click": function () {
  10995. U.MD.D.I.openApplication(str, obj, info);
  10996. }
  10997. }
  10998. break;
  10999. case "ppt":
  11000. aTool = 73;
  11001. _iframe = $$("iframe", {
  11002. "frameborder": "no",
  11003. "border": "0",
  11004. "scrolling ": "no",
  11005. "style": {
  11006. "cssText": "border:0;width:100%;height:100%"
  11007. },
  11008. "src": "https://ppt.cocorobo.cn/"
  11009. });
  11010. _box.appendChild(_iframe);
  11011. _box.appendChild(_jie);
  11012. _formdiv = new U.UF.UI.form(
  11013. "PPT",
  11014. _box, { //"/jsmind/example/demo.html"
  11015. "id": "ppts_Yu" + cid + stage + task + tool,
  11016. "style": {
  11017. "width": "90%",
  11018. "height": "90%",
  11019. "overflow": 'hidden'
  11020. },
  11021. "onresize": function () { }
  11022. }, {
  11023. closecallback: function () { }
  11024. }, {
  11025. "style": {
  11026. "height": "36px"
  11027. }
  11028. }).form; //创建窗体
  11029. _taskbar = {
  11030. "id": str + _formdiv.id,
  11031. "style": {
  11032. "backgroundImage": "url(/img/icon/ppt.png)"
  11033. },
  11034. "name": "PPT",
  11035. "forms": _formdiv,
  11036. "click": function () {
  11037. U.MD.D.I.openApplication(str, obj, info);
  11038. }
  11039. }
  11040. break;
  11041. }
  11042. if (_iframe) {
  11043. if (str == 'doc') {
  11044. _iframe = _formdiv.querySelector('iframe')
  11045. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11046. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  11047. })
  11048. if (onloadListener) {
  11049. _iframe.contentDocument.location.reload()
  11050. } else {
  11051. _iframe.contentDocument.location.reload()
  11052. }
  11053. } else if (str == 'mind') {
  11054. _iframe = _formdiv.querySelector('iframe')
  11055. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11056. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  11057. })
  11058. if (onloadListener) {
  11059. _iframe.contentDocument.location.reload()
  11060. } else {
  11061. _iframe.contentDocument.location.reload()
  11062. }
  11063. } else if (str == 'whiteboard') {
  11064. _iframe = _formdiv.querySelector('iframe')
  11065. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11066. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  11067. })
  11068. // if (onloadListener) {
  11069. // try {
  11070. // _iframe.src += "?cocorobo="+new Date().getTime()
  11071. // _iframe.contentWindow.document.location.reload()
  11072. // } catch (error) {
  11073. // }
  11074. // } else {
  11075. // _iframe.contentDocument.location.reload()
  11076. // }
  11077. } else if (str == 'CocoPi') {
  11078. _iframe = _formdiv.querySelector('iframe')
  11079. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11080. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  11081. })
  11082. if (onloadListener) {
  11083. _iframe.contentDocument.location.reload()
  11084. } else {
  11085. _iframe.contentDocument.location.reload()
  11086. }
  11087. } else if (str == 'ppt') {
  11088. _iframe = _formdiv.querySelector('iframe')
  11089. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11090. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  11091. })
  11092. if (onloadListener) {
  11093. _iframe.contentDocument.location.reload()
  11094. } else {
  11095. _iframe.contentDocument.location.reload()
  11096. }
  11097. } else {
  11098. _iframe.onload = () => { };
  11099. }
  11100. _jie.onclick = async () => {
  11101. let text = ''
  11102. let files = ''
  11103. let type = '2'
  11104. if (aTool == 1) {
  11105. text = _iframe.contentWindow.h.app.scene.elements
  11106. files = _iframe.contentWindow.h.app.files
  11107. type = '3'
  11108. } else if (aTool == 6) {
  11109. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  11110. type = '1'
  11111. } else if (aTool == 3) {
  11112. text = await U.MD.D.I.getEditorContent(_iframe);
  11113. type = '2'
  11114. } else if (aTool == 57) {
  11115. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  11116. type = '4'
  11117. } else if (aTool == 73) {
  11118. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  11119. type = '5'
  11120. }
  11121. _loading.style.display = 'flex'
  11122. if(aTool == 1){
  11123. U.MD.D.I.downloadFile(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan, files)
  11124. }else {
  11125. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  11126. }
  11127. }
  11128. }
  11129. //U.MD.D.I.openClick(str);
  11130. //如果有任务栏信息
  11131. // if (_taskbar) {
  11132. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  11133. // }
  11134. }
  11135. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  11136. var xmlhttp;
  11137. var Mac, Sn, DeviceId
  11138. if (window.XMLHttpRequest) {
  11139. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11140. xmlhttp = new XMLHttpRequest();
  11141. } else {
  11142. // IE6, IE5 浏览器执行代码
  11143. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11144. }
  11145. xmlhttp.onreadystatechange = function () {
  11146. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11147. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11148. // resolve(res.value[0][0].text);
  11149. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11150. }
  11151. }
  11152. }
  11153. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11154. xmlhttp.send();
  11155. }
  11156. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  11157. var xmlhttp;
  11158. var Mac, Sn, DeviceId
  11159. if (window.XMLHttpRequest) {
  11160. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11161. xmlhttp = new XMLHttpRequest();
  11162. } else {
  11163. // IE6, IE5 浏览器执行代码
  11164. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11165. }
  11166. xmlhttp.onreadystatechange = function () {
  11167. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11168. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11169. // resolve(res.value[0][0].text);
  11170. if (type == '2') {
  11171. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11172. } else if (type == '3') {
  11173. let text = JSON.parse(JSON.parse(xmlhttp.response)[0][0].text)
  11174. // 如果是数组或含有 elements 并且 elements 是数组
  11175. let updateSceneData;
  11176. if ((Array.isArray(text)) || (text && Array.isArray(text.elements))) {
  11177. if (Array.isArray(text)) {
  11178. // 兼容原有结构:仅为数组时
  11179. updateSceneData = { elements: text };
  11180. } else {
  11181. // 有 elements 和可能的 files 字段时,直接传递整个对象
  11182. updateSceneData = { ...text };
  11183. }
  11184. } else if (text && (text.elements || text.files)) {
  11185. updateSceneData = { ...text };
  11186. } else {
  11187. // fallback 兼容早期意外结构,作为 elements
  11188. updateSceneData = { elements: text };
  11189. }
  11190. // 检查 files 字段,若为 jsonObject 且含有 dataURL,将 dataURL 网络地址转为 base64
  11191. if (updateSceneData && updateSceneData.files && typeof updateSceneData.files === 'object' && !Array.isArray(updateSceneData.files)) {
  11192. const files = updateSceneData.files;
  11193. const fileKeys = Object.keys(files);
  11194. let promises = [];
  11195. let needConvert = false;
  11196. fileKeys.forEach(key => {
  11197. let file = files[key];
  11198. if (file && file.dataURL && typeof file.dataURL === 'string' && file.dataURL.startsWith('http')) {
  11199. // 是网络地址,需转换
  11200. needConvert = true;
  11201. let p = fetch(file.dataURL)
  11202. .then(res => res.blob())
  11203. .then(blob => {
  11204. return new Promise(resolve => {
  11205. const reader = new FileReader();
  11206. reader.onloadend = function () {
  11207. // data:[mime];base64,...
  11208. const base64 = reader.result;
  11209. file.dataURL = base64;
  11210. resolve();
  11211. };
  11212. reader.readAsDataURL(blob);
  11213. });
  11214. });
  11215. promises.push(p);
  11216. }
  11217. });
  11218. if (needConvert && promises.length > 0) {
  11219. Promise.all(promises).then(() => {
  11220. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11221. iframe.contentWindow.h.app.files = { ...iframe.contentWindow.h.app.files, ...updateSceneData.files };
  11222. });
  11223. } else {
  11224. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11225. }
  11226. } else {
  11227. iframe.contentWindow.h.app.updateScene(updateSceneData);
  11228. }
  11229. } else if (type == '4') {
  11230. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  11231. } else if (type == '5') {
  11232. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  11233. }
  11234. } else {
  11235. if (type == '2') {
  11236. iframe.contentWindow.editor.minder.importData('json', '')
  11237. } else if (type == '3') {
  11238. iframe.contentWindow.h.app.updateScene({ elements: [] })
  11239. } else if (type == '4') {
  11240. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11241. }
  11242. }
  11243. }
  11244. }
  11245. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11246. xmlhttp.send();
  11247. }
  11248. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  11249. var xmlhttp;
  11250. var Mac, Sn, DeviceId
  11251. if (window.XMLHttpRequest) {
  11252. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11253. xmlhttp = new XMLHttpRequest();
  11254. } else {
  11255. // IE6, IE5 浏览器执行代码
  11256. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11257. }
  11258. xmlhttp.onreadystatechange = function () {
  11259. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11260. if (xmlhttp.response) {
  11261. // resolve(res.value[0][0].text);
  11262. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  11263. // $(fileInput).val('');
  11264. // });
  11265. span.innerHTML = '上传成功'
  11266. setTimeout(() => {
  11267. loading.style.display = 'none'
  11268. }, 1000);
  11269. }
  11270. }
  11271. }
  11272. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  11273. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  11274. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  11275. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  11276. // 设置请求头,表示请求体的编码格式
  11277. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  11278. // 设置请求体,使用url-encoded格式的数据
  11279. }
  11280. U.MD.D.I.downloadFile = function (cid, s, task, t, uid, type, text, loading, span, files) {
  11281. // 遍历 files,上传后只把 dataURL 变成链接,其它结构不变
  11282. let _fileArray = Object.keys(files);
  11283. if (!_fileArray.length) {
  11284. let text_str = JSON.stringify({
  11285. elements: text,
  11286. files: []
  11287. });
  11288. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11289. return;
  11290. }
  11291. var credentials = {
  11292. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  11293. secretAccessKey: "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",
  11294. };
  11295. window.AWS.config.update(credentials);
  11296. window.AWS.config.region = "cn-northwest-1";
  11297. var bucket = new window.AWS.S3({
  11298. params: { Bucket: "ccrb" }
  11299. });
  11300. let uploadedCount = 0;
  11301. let total = _fileArray.length;
  11302. _fileArray.forEach(function (key, idx) {
  11303. let fileObj = files[key];
  11304. if (!fileObj || !fileObj.dataURL) {
  11305. // 没有内容就直接加计数
  11306. uploadedCount++;
  11307. if (uploadedCount === total) finalizeUpload();
  11308. return;
  11309. }
  11310. // 如果 dataURL 已经是链接(http, https, //, oss, cloud, cocorobo)就不上传
  11311. if (
  11312. typeof fileObj.dataURL === "string" &&
  11313. (
  11314. /^https?:\/\//.test(fileObj.dataURL) ||
  11315. /^\/\//.test(fileObj.dataURL) ||
  11316. fileObj.dataURL.startsWith('oss://') ||
  11317. fileObj.dataURL.startsWith('cloud://') ||
  11318. fileObj.dataURL.indexOf('.cocorobo.cn/') > -1
  11319. )
  11320. ) {
  11321. // 已经是链接,不上传,直接计数
  11322. uploadedCount++;
  11323. if (uploadedCount === total) finalizeUpload();
  11324. return;
  11325. }
  11326. // 是 base64 字符串转 File
  11327. if (typeof fileObj.dataURL === "string") {
  11328. let filename = fileObj.name || ('file_' + key);
  11329. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11330. }
  11331. let file = fileObj.dataURL;
  11332. if (file) {
  11333. // fileObj 结构类似:
  11334. // {
  11335. // name: "file_3344aa4c0fa552dc01cb2fe5edb6e4eb3aed9e39",
  11336. // size: 12034,
  11337. // type: "image/jpeg",
  11338. // webkitRelativePath: "",
  11339. // dataURL: File对象
  11340. // }
  11341. let ext = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11342. ? fileObj.name.substring(fileObj.name.lastIndexOf('.') + 1)
  11343. : (file.type ? file.type.split('/')[1] : 'png');
  11344. let basename = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11345. ? fileObj.name.substring(0, fileObj.name.lastIndexOf('.'))
  11346. : (fileObj.name || ('file_' + key));
  11347. var params = {
  11348. Key: basename + '_' + new Date().getTime() + "." + ext,
  11349. ContentType: fileObj.type || file.type || 'application/octet-stream',
  11350. Body: file,
  11351. "Access-Control-Allow-Credentials": "*",
  11352. ACL: "public-read",
  11353. };
  11354. var options = {
  11355. partSize: 2048 * 1024 * 1024,
  11356. queueSize: 2,
  11357. leavePartsOnError: true,
  11358. };
  11359. bucket.upload(params, options)
  11360. .on("httpUploadProgress", function (evt) {
  11361. // 进度处理
  11362. })
  11363. .send(function (err, data) {
  11364. if (data) {
  11365. // 只将 dataURL 字段替换为链接,其它原样不动
  11366. files[key].dataURL = data.Location;
  11367. }
  11368. // 上传出错仍然整体结构
  11369. uploadedCount++;
  11370. if (uploadedCount === total) finalizeUpload();
  11371. });
  11372. } else {
  11373. uploadedCount++;
  11374. if (uploadedCount === total) finalizeUpload();
  11375. }
  11376. });
  11377. function finalizeUpload() {
  11378. // 最终打包时,files结构不变,只是dataURL变为链接
  11379. // let fileList = _fileArray.map(key => files[key]);
  11380. let text_str = JSON.stringify({
  11381. elements: text,
  11382. files: files
  11383. });
  11384. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11385. }
  11386. }
  11387. U.MD.D.I.downloadFile2 = function (cid, stage, task, t, uid, text, loading, span, files, _iframe, str) {
  11388. // 优化:常量抽离、合并相同代码、结构简化
  11389. const BUCKET = "ccrb";
  11390. const REGION = "cn-northwest-1";
  11391. const ACCESS_KEY_ID = "AKIATLPEDU37QV5CHLMH";
  11392. const SECRET_ACCESS_KEY = "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";
  11393. function injectScreenshotScript(text_str) {
  11394. // 注入屏幕截图脚本到iframe
  11395. loading.style.display = 'flex';
  11396. const doc = _iframe.contentWindow.document;
  11397. var s = doc.createElement("script");
  11398. s.type = "text/javascript";
  11399. // 优化脚本内容拼接
  11400. s.innerHTML = `
  11401. var _js = document.createElement("script");
  11402. _js.type="text/javascript";
  11403. _js.charset="UTF-8";
  11404. _js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  11405. _js.onload = function(){
  11406. var imgs = document.getElementsByTagName("img");
  11407. for(var i = 0; i < imgs.length; i++) { imgs[i].crossOrigin = "anonymous"; }
  11408. html2canvas(document.body, {
  11409. allowTaint: true,
  11410. useCORS: true,
  11411. height: document.body.scrollHeight,
  11412. windowHeight: document.body.scrollHeight
  11413. }).then(canvas => {
  11414. var base64Url = canvas.toDataURL("image/png");
  11415. var file = dataURLtoFile_shishi(base64Url, "截图");
  11416. beforeUpload_shishi(
  11417. file,
  11418. '${uid}',
  11419. '${cid}',
  11420. '${stage}',
  11421. '${task}',
  11422. '${t}',
  11423. '${str}_loadLi_Jie${cid}${stage}${task}${t}${uid}',
  11424. '1',
  11425. \`${text_str}\`
  11426. );
  11427. });
  11428. };
  11429. document.head.appendChild(_js);
  11430. `;
  11431. doc.head.appendChild(s);
  11432. }
  11433. let _fileArray = Object.keys(files);
  11434. if (!_fileArray.length) {
  11435. const text_str = JSON.stringify({ elements: text, files: [] });
  11436. console.log(loading);
  11437. injectScreenshotScript(text_str);
  11438. return;
  11439. }
  11440. // AWS 配置初始化(只做一次)
  11441. if (!window.AWS?.S3?.__ccrbInitialized) {
  11442. window.AWS.config.update({
  11443. accessKeyId: ACCESS_KEY_ID,
  11444. secretAccessKey: SECRET_ACCESS_KEY
  11445. });
  11446. window.AWS.config.region = REGION;
  11447. window.AWS.S3.__ccrbInitialized = true;
  11448. }
  11449. const bucket = new window.AWS.S3({ params: { Bucket: BUCKET } });
  11450. let uploadedCount = 0;
  11451. const total = _fileArray.length;
  11452. function isFileUrl(url) {
  11453. return typeof url === "string" && (
  11454. /^https?:\/\//.test(url) ||
  11455. /^\/\//.test(url) ||
  11456. url.startsWith('oss://') ||
  11457. url.startsWith('cloud://') ||
  11458. url.indexOf('.cocorobo.cn/') > -1
  11459. );
  11460. }
  11461. function finalizeUpload() {
  11462. // 优化:只注入脚本,不重复提交
  11463. const text_str = JSON.stringify({ elements: text, files });
  11464. console.log(loading);
  11465. injectScreenshotScript(text_str);
  11466. }
  11467. _fileArray.forEach(function (key) {
  11468. const fileObj = files[key];
  11469. if (!fileObj || !fileObj.dataURL) {
  11470. uploadedCount++;
  11471. if (uploadedCount === total) finalizeUpload();
  11472. return;
  11473. }
  11474. if (isFileUrl(fileObj.dataURL)) {
  11475. uploadedCount++;
  11476. if (uploadedCount === total) finalizeUpload();
  11477. return;
  11478. }
  11479. // base64字符串转 File
  11480. if (typeof fileObj.dataURL === "string") {
  11481. const filename = fileObj.name || ('file_' + key);
  11482. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11483. }
  11484. const file = fileObj.dataURL;
  11485. if (!file) {
  11486. uploadedCount++;
  11487. if (uploadedCount === total) finalizeUpload();
  11488. return;
  11489. }
  11490. const ext = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11491. ? fileObj.name.substring(fileObj.name.lastIndexOf('.') + 1)
  11492. : (file.type ? file.type.split('/')[1] : 'png');
  11493. const basename = (fileObj.name && fileObj.name.lastIndexOf('.') !== -1)
  11494. ? fileObj.name.substring(0, fileObj.name.lastIndexOf('.'))
  11495. : (fileObj.name || ('file_' + key));
  11496. const params = {
  11497. Key: `${basename}_${Date.now()}.${ext}`,
  11498. ContentType: fileObj.type || file.type || 'application/octet-stream',
  11499. Body: file,
  11500. "Access-Control-Allow-Credentials": "*",
  11501. ACL: "public-read"
  11502. };
  11503. const options = {
  11504. partSize: 2048 * 1024 * 1024,
  11505. queueSize: 2,
  11506. leavePartsOnError: true
  11507. };
  11508. bucket.upload(params, options)
  11509. .on("httpUploadProgress", function (evt) {
  11510. // 进度处理可自定义
  11511. })
  11512. .send(function (err, data) {
  11513. if (data) {
  11514. files[key].dataURL = data.Location;
  11515. }
  11516. uploadedCount++;
  11517. if (uploadedCount === total) finalizeUpload();
  11518. });
  11519. });
  11520. }
  11521. function dataURLtoFile_shishi(dataurl, filename) {
  11522. try {
  11523. if (typeof dataurl !== "string" || dataurl.indexOf(',') === -1) {
  11524. throw new Error("Invalid dataurl");
  11525. }
  11526. let arr = dataurl.split(","),
  11527. mimeMatch = arr[0].match(/:(.*?);/);
  11528. if (!mimeMatch) {
  11529. throw new Error("Mime type not found in dataurl");
  11530. }
  11531. let mime = mimeMatch[1];
  11532. let bstr = atob(arr[1]);
  11533. let n = bstr.length;
  11534. let u8arr = new Uint8Array(n);
  11535. for (let i = 0; i < n; i++) {
  11536. u8arr[i] = bstr.charCodeAt(i);
  11537. }
  11538. // Check for File constructor compatibility
  11539. if (typeof File === "function") {
  11540. return new File([u8arr], filename, { type: mime });
  11541. } else {
  11542. // fallback for very old browsers
  11543. let blob = new Blob([u8arr], { type: mime });
  11544. blob.name = filename;
  11545. return blob;
  11546. }
  11547. } catch(e) {
  11548. console.error("dataURLtoFile_shishi error:", e, dataurl, filename);
  11549. // 返回null,调用方自行判断
  11550. return null;
  11551. }
  11552. }
  11553. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  11554. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11555. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11556. _userinfo = US.userInfo, //登录用户信息
  11557. _userid = US.userInfo.userid //登录用户id
  11558. let _iframe;
  11559. let _cid = cid,
  11560. _stage = stage,
  11561. _task = task,
  11562. _tool = tool;
  11563. var _jie = $$("div", {
  11564. "style": {
  11565. "position": "absolute",
  11566. "bottom": "50px",
  11567. "right": "50px",
  11568. "zIndex": "9999",
  11569. "backgroundColor": "#2268bc",
  11570. "color": "#fff",
  11571. "padding": "12px 20px",
  11572. "cursor": "pointer",
  11573. "borderRadius": "4px",
  11574. },
  11575. "innerHTML": "提交作业"
  11576. })
  11577. let aTool = ''
  11578. let _loading = document.createElement('div')
  11579. _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;"
  11580. // _loading.id = "";
  11581. let _lchild = document.createElement('div')
  11582. let _limg = document.createElement('img')
  11583. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11584. _limg.style = "width: 26px;margin-right: 10px;"
  11585. _lchild.appendChild(_limg)
  11586. let _lspan = document.createElement('span')
  11587. _lspan.innerHTML = "上传中..."
  11588. _lchild.appendChild(_lspan)
  11589. _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%);"
  11590. _loading.appendChild(_lchild)
  11591. var _box = $$('div', {
  11592. "style": {
  11593. "position": "relative",
  11594. "width": "100%",
  11595. "height": "100%",
  11596. },
  11597. })
  11598. _box.appendChild(_loading)
  11599. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11600. switch (str) {
  11601. case "CocoPi":
  11602. aTool = 57;
  11603. _iframe = $$("iframe", {
  11604. "allowpaymentrequest": "allowpaymentrequest",
  11605. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11606. "webkitallowfullscreen": "",
  11607. "mozallowfullscreen": "",
  11608. "frameborder": "no",
  11609. "border": "0",
  11610. "scrolling ": "no",
  11611. "style": {
  11612. "cssText": "border:0;width:100%;height:100%"
  11613. },
  11614. "src": "https://pi.cocorobo.cn/"
  11615. })
  11616. _box.appendChild(_iframe);
  11617. _box.appendChild(_jie);
  11618. _formdiv = new U.UF.UI.form(
  11619. "CocoPi",
  11620. _box, {
  11621. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11622. "style": {
  11623. "width": "90%",
  11624. "height": "90%",
  11625. "overflow": 'hidden'
  11626. },
  11627. "onresize": function () { }
  11628. }, {
  11629. closecallback: function () { }
  11630. }, {
  11631. "style": {
  11632. "height": "36px"
  11633. }
  11634. }).form; //创建窗体
  11635. _taskbar = {
  11636. "id": str + _formdiv.id,
  11637. "style": {
  11638. "backgroundImage": "url(/img/icon/cocopi.png)"
  11639. },
  11640. "name": "CocoPi",
  11641. "forms": _formdiv,
  11642. "click": function () {
  11643. U.MD.D.I.openApplication(str, obj, info);
  11644. }
  11645. }
  11646. break;
  11647. }
  11648. if (_iframe) {
  11649. if (str == 'CocoPi') {
  11650. _iframe = _formdiv.querySelector('iframe')
  11651. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11652. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11653. })
  11654. if (onloadListener) {
  11655. _iframe.contentDocument.location.reload()
  11656. } else {
  11657. _iframe.contentDocument.location.reload()
  11658. }
  11659. }
  11660. _jie.onclick = async () => {
  11661. let text = ''
  11662. if (aTool == 57) {
  11663. text = _iframe.contentWindow.getLoadXmlStr()
  11664. }
  11665. _loading.style.display = 'flex'
  11666. console.log(_loading);
  11667. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11668. _loading.style.display = 'none'
  11669. let _div = document.createElement('div')
  11670. _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;"
  11671. let _inner = document.createElement('div')
  11672. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11673. _inner.innerHTML = "上传成功"
  11674. _div.appendChild(_inner)
  11675. _iframe.contentWindow.window.document.body.appendChild(_div)
  11676. _div.onclick = () => {
  11677. _iframe.contentWindow.window.document.body.removeChild(_div)
  11678. }
  11679. setTimeout(() => {
  11680. _iframe.contentWindow.window.document.body.removeChild(_div)
  11681. }, 1000);
  11682. }, [], { "type": "POST", "withCredentials": true });
  11683. }
  11684. }
  11685. }
  11686. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11687. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11688. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11689. _userid = student.userid, //登录用户id
  11690. _username = student.student //用户名字
  11691. let _iframe;
  11692. let _cid = cid,
  11693. _stage = stage,
  11694. _task = task,
  11695. _tool = tool;
  11696. var _jie = $$("div", {
  11697. "style": {
  11698. "position": "absolute",
  11699. "bottom": "50px",
  11700. "right": "50px",
  11701. "zIndex": "9999",
  11702. "backgroundColor": "#2268bc",
  11703. "color": "#fff",
  11704. "padding": "12px 20px",
  11705. "cursor": "pointer",
  11706. "borderRadius": "4px",
  11707. },
  11708. "innerHTML": "提交作业"
  11709. })
  11710. let aTool = ''
  11711. let _loading = document.createElement('div')
  11712. _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;"
  11713. // _loading.id = "";
  11714. let _lchild = document.createElement('div')
  11715. let _limg = document.createElement('img')
  11716. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11717. _limg.style = "width: 26px;margin-right: 10px;"
  11718. _lchild.appendChild(_limg)
  11719. let _lspan = document.createElement('span')
  11720. _lspan.innerHTML = "上传中..."
  11721. _lchild.appendChild(_lspan)
  11722. _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%);"
  11723. _loading.appendChild(_lchild)
  11724. var _box = $$('div', {
  11725. "style": {
  11726. "position": "relative",
  11727. "width": "100%",
  11728. "height": "100%",
  11729. },
  11730. })
  11731. _box.appendChild(_loading)
  11732. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11733. switch (str) {
  11734. case "CocoPi":
  11735. aTool = 57;
  11736. _iframe = $$("iframe", {
  11737. "allowpaymentrequest": "allowpaymentrequest",
  11738. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11739. "webkitallowfullscreen": "",
  11740. "mozallowfullscreen": "",
  11741. "frameborder": "no",
  11742. "border": "0",
  11743. "scrolling ": "no",
  11744. "style": {
  11745. "cssText": "border:0;width:100%;height:100%"
  11746. },
  11747. "src": "https://pi.cocorobo.cn/"
  11748. })
  11749. _box.appendChild(_iframe);
  11750. _box.appendChild(_jie);
  11751. _formdiv = new U.UF.UI.form(
  11752. "CocoPi-" + _username,
  11753. _box, {
  11754. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11755. "style": {
  11756. "width": "90%",
  11757. "height": "90%",
  11758. "overflow": 'hidden'
  11759. },
  11760. "onresize": function () { }
  11761. }, {
  11762. closecallback: function () { }
  11763. }, {
  11764. "style": {
  11765. "height": "36px"
  11766. }
  11767. }).form; //创建窗体
  11768. _taskbar = {
  11769. "id": str + _formdiv.id,
  11770. "style": {
  11771. "backgroundImage": "url(/img/icon/cocopi.png)"
  11772. },
  11773. "name": "CocoPi",
  11774. "forms": _formdiv,
  11775. "click": function () {
  11776. U.MD.D.I.openApplication(str, obj, info);
  11777. }
  11778. }
  11779. break;
  11780. }
  11781. if (_iframe) {
  11782. if (str == 'CocoPi') {
  11783. _iframe = _formdiv.querySelector('iframe')
  11784. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11785. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11786. })
  11787. if (onloadListener) {
  11788. _iframe.contentDocument.location.reload()
  11789. } else {
  11790. _iframe.contentDocument.location.reload()
  11791. }
  11792. }
  11793. _jie.onclick = async () => {
  11794. let text = ''
  11795. if (aTool == 57) {
  11796. text = _iframe.contentWindow.getLoadXmlStr()
  11797. }
  11798. _loading.style.display = 'flex'
  11799. console.log(_loading);
  11800. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11801. _loading.style.display = 'none'
  11802. let _div = document.createElement('div')
  11803. _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;"
  11804. let _inner = document.createElement('div')
  11805. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11806. _inner.innerHTML = "上传成功"
  11807. _div.appendChild(_inner)
  11808. _iframe.contentWindow.window.document.body.appendChild(_div)
  11809. _div.onclick = () => {
  11810. _iframe.contentWindow.window.document.body.removeChild(_div)
  11811. }
  11812. setTimeout(() => {
  11813. _iframe.contentWindow.window.document.body.removeChild(_div)
  11814. }, 1000);
  11815. }, [], { "type": "POST", "withCredentials": true });
  11816. }
  11817. }
  11818. }
  11819. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11820. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11821. if (res.value[0].length > 0) {
  11822. if (atool == 57) {
  11823. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11824. }
  11825. } else {
  11826. if (atool == 57) {
  11827. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11828. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11829. }
  11830. }
  11831. }, [], { "type": "POST", "withCredentials": true });
  11832. }
  11833. U.MD.D.addOp = function (text, type, time) {
  11834. var userInfo = US.userInfo;
  11835. if (Object.keys(userInfo).length !== 0) {
  11836. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11837. }, [], { "type": "POST", "withCredentials": true });
  11838. }
  11839. }