DeskTop.js 727 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528
  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. ];
  1456. //stia
  1457. U.MD.D.I.stiaTeacherDeskIcon = [
  1458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1462. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1465. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1467. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1468. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1469. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1470. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1471. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1472. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1473. ];
  1474. //stia
  1475. U.MD.D.I.stiaStudentDeskIcon = [
  1476. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. ];
  1481. //szdjg
  1482. U.MD.D.I.szdjgTeacherDeskIcon = [
  1483. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. ];
  1486. //szdjg
  1487. U.MD.D.I.szdjgStudentDeskIcon = [
  1488. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010607
  1494. U.MD.D.I.x010607TeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1503. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //010607
  1512. U.MD.D.I.x010607StudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //010608
  1519. U.MD.D.I.x010608TeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. ];
  1535. //010608
  1536. U.MD.D.I.x010608StudentDeskIcon = [
  1537. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //xhly
  1543. U.MD.D.I.xhlyTeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. ];
  1546. //010608
  1547. U.MD.D.I.xhlyStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //北师大
  1551. U.MD.D.I.BSDNSteacherDeskIcon = [
  1552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1559. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1560. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1562. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1563. ];
  1564. //北师大
  1565. U.MD.D.I.BSDNSstudentDeskIcon = [
  1566. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //CUHK_EDU
  1572. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1581. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1583. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1584. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1585. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1586. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1587. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1588. ];
  1589. //CUHK_EDU
  1590. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1591. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //010503
  1597. U.MD.D.I.x010503TeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1601. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1602. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1606. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1607. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1608. ];
  1609. //010503
  1610. U.MD.D.I.x010503StudentDeskIcon = [
  1611. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1615. ];
  1616. //SPROUT Lab
  1617. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1618. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1619. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1622. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1623. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //SPROUT Lab
  1630. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1631. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //010204
  1637. U.MD.D.I.x010204TeacherDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. ];
  1641. //010204
  1642. U.MD.D.I.x010204StudentDeskIcon = [
  1643. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. ];
  1648. //trail
  1649. U.MD.D.I.trailTeacherDeskIcon = [
  1650. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1651. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1652. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1653. ];
  1654. //trail
  1655. U.MD.D.I.trailStudentDeskIcon = [
  1656. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1657. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1658. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1659. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. ];
  1661. //trial
  1662. U.MD.D.I.trialTeacherDeskIcon = [
  1663. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1664. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1665. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1666. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1669. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1670. ];
  1671. //trial
  1672. U.MD.D.I.trialStudentDeskIcon = [
  1673. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1676. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. ];
  1678. //010504
  1679. U.MD.D.I.x010504TeacherDeskIcon = [
  1680. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1681. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1682. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1683. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1684. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1685. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1691. ];
  1692. //010504
  1693. U.MD.D.I.x010504StudentDeskIcon = [
  1694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1696. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1698. ];
  1699. //010505
  1700. U.MD.D.I.x010505TeacherDeskIcon = [
  1701. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1702. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1706. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1707. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1708. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1710. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1711. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1712. ];
  1713. //010505
  1714. U.MD.D.I.x010505StudentDeskIcon = [
  1715. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //SCNUET
  1721. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1722. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1727. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1728. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1729. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1730. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1731. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1732. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1733. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1734. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1735. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1738. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1739. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1740. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1741. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1742. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1743. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1744. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1745. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1746. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1747. ];
  1748. //SCNUET
  1749. U.MD.D.I.SCNUETAdminDeskIcon = [
  1750. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1751. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1752. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1753. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1754. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1755. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1756. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1757. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1758. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1759. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1760. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1761. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1762. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1763. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1766. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1767. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1768. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1769. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1770. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1773. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1774. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1775. ];
  1776. //SCNUET
  1777. U.MD.D.I.SCNUETStudentDeskIcon = [
  1778. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1779. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1780. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1781. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1782. ];
  1783. //x020201
  1784. U.MD.D.I.x020201TeacherDeskIcon = [
  1785. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1786. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1787. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1788. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1789. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1790. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1791. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1792. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1795. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1796. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1797. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1798. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1799. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1800. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1801. ];
  1802. //x020201
  1803. U.MD.D.I.x020201AdminDeskIcon = [
  1804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1808. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1809. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1810. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1811. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1812. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1815. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1816. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1817. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1818. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1819. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1820. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1821. ];
  1822. //020201
  1823. U.MD.D.I.x020201StudentDeskIcon = [
  1824. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1825. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1828. ];
  1829. //010611
  1830. U.MD.D.I.x010611TeacherDeskIcon = [
  1831. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1832. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1833. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1834. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1835. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1837. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1839. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1840. ];
  1841. //010611
  1842. U.MD.D.I.x010611StudentDeskIcon = [
  1843. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1844. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1845. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1846. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1847. ];
  1848. //010612
  1849. U.MD.D.I.x010612TeacherDeskIcon = [
  1850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1852. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1853. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1854. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1855. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1856. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //010612
  1862. U.MD.D.I.x010612StudentDeskIcon = [
  1863. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //tianyuan
  1869. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1873. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1874. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1875. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1876. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1877. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1878. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1879. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1880. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1881. ];
  1882. //010611
  1883. U.MD.D.I.tianyuanStudentDeskIcon = [
  1884. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1885. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1886. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1887. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1888. ];
  1889. //320101
  1890. U.MD.D.I.x320101TeacherDeskIcon = [
  1891. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1892. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1894. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1895. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1896. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1898. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1900. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1902. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1903. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1904. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1905. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1906. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1907. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1908. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1909. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1910. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1911. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1912. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1913. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1915. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1916. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1918. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1919. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1920. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1921. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1923. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1924. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1927. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1928. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1929. ];
  1930. //320101
  1931. U.MD.D.I.x320101StudentDeskIcon = [
  1932. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1934. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1936. ];
  1937. //szsy
  1938. U.MD.D.I.szsyTeacherDeskIcon = [
  1939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1941. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1942. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1943. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1944. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1945. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1946. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1947. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1948. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1950. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1951. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1952. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1953. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1954. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1955. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1956. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1957. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1958. ];
  1959. //szsy
  1960. U.MD.D.I.szsyStudentDeskIcon = [
  1961. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1962. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1963. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1964. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1965. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1966. ];
  1967. //010404
  1968. U.MD.D.I.x010404TeacherDeskIcon = [
  1969. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1970. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1971. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1972. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1975. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1977. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1978. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1979. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1980. ];
  1981. //010404
  1982. U.MD.D.I.x010404StudentDeskIcon = [
  1983. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1986. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1987. ];
  1988. //cocorobo demo
  1989. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1992. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1993. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1994. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1995. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1996. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1997. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1998. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1999. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2000. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2001. ];
  2002. //cocorobo demo
  2003. U.MD.D.I.demoCocoStudentDeskIcon = [
  2004. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2006. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2007. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2008. ];
  2009. //MOAI
  2010. U.MD.D.I.MOAITeacherDeskIcon = [
  2011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2015. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2016. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2017. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2018. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2019. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2020. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2021. ];
  2022. //MOAI 学生端
  2023. U.MD.D.I.MOAIStudentDeskIcon = [
  2024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2027. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2028. ];
  2029. //#region 桌面初始化a
  2030. /**
  2031. * 初始化桌面的起始函数
  2032. *
  2033. */
  2034. U.MD.D.I.init = function () {
  2035. if ($("#U_MD_D_K")[0]) {
  2036. //初始化桌面图标
  2037. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2038. // var clickUrl = ':12588/requestIp.php';
  2039. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2040. // U.MD.D.I.Ip = data;
  2041. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2042. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2043. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2044. // })
  2045. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2046. // })
  2047. }
  2048. }
  2049. /**
  2050. * 模式切换
  2051. *
  2052. */
  2053. U.MD.D.I.ModeCheck = function (type) {
  2054. if (US.Config.type == type) {
  2055. return
  2056. }
  2057. US.Config.type = type
  2058. $('.U_PBL_Check .active')[0].className = ''
  2059. if (type == 1) {
  2060. $('.U_PBL_Check div')[0].className = 'active'
  2061. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2062. } else {
  2063. $('.U_PBL_Check div')[1].className = 'active'
  2064. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2065. }
  2066. //初始化桌面图标
  2067. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2068. if (type == 2) {
  2069. U.MD.D.I.openApplication("project")
  2070. }
  2071. }
  2072. /**
  2073. * 隐藏任务栏
  2074. *
  2075. * @param {element} 桌面元素
  2076. */
  2077. U.MD.D.I.hiddenTaskbar = function (el) {
  2078. //任务栏位置变小
  2079. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2080. //桌面的位置变大
  2081. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2082. }
  2083. /**
  2084. * 隐藏任务栏
  2085. *
  2086. * @param {element} 桌面元素
  2087. */
  2088. U.MD.D.I.hiddenTaskbarout = function (el) {
  2089. //任务栏位置变小
  2090. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2091. //任务栏位置变化
  2092. U.selectEl(el).css({ "bottom": "-60px" });
  2093. //桌面的位置变大
  2094. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2095. }
  2096. }
  2097. /**
  2098. * 初始化打印桌面图标
  2099. *
  2100. * @param {element} 桌面元素
  2101. */
  2102. U.MD.D.I.initDesktopIcons = function (el, type) {
  2103. var i, //用于循环
  2104. _content, //桌面图标元素
  2105. _iconcontent, //桌面图标元素
  2106. _frag = $$("frag"), //定义一个碎片元素
  2107. _type = US.userInfo.type,
  2108. _org = US.userInfo.org,
  2109. _oid = US.userInfo.organizeid,
  2110. _role = US.userInfo.role,
  2111. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2112. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2113. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2114. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2115. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2116. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2117. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2118. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2119. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2120. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2121. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2122. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2123. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2124. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2125. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2126. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2127. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2128. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2129. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2130. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2131. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2132. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2133. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2134. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2135. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2136. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2137. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2138. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2139. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2140. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2141. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2142. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2143. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2144. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2145. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2146. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2147. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2148. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2149. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2150. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2151. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2152. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2153. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2154. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2155. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2156. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2157. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2158. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2159. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2160. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2161. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2162. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2163. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2164. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2165. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2166. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2167. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2168. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2169. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2170. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2171. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2172. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2173. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2174. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2175. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2176. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2177. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2178. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2179. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2180. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2181. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2182. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2183. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2184. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2185. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2186. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2187. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2188. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2189. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2190. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2191. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2192. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2193. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2194. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2195. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2196. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2197. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2198. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2199. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2200. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2201. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2202. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2203. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2204. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2205. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2206. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2207. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2208. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2209. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2210. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2211. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2212. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2213. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2214. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2215. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2216. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2217. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2218. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2219. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2220. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2221. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2222. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2223. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2224. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2225. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2226. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2227. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2228. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2229. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2230. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2231. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2232. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2233. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2234. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2235. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2236. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2237. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2238. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2239. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2240. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2241. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2242. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2243. 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'];
  2244. 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"];
  2245. 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",]
  2246. //清楚桌面图标
  2247. el.innerHTML = "";
  2248. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2249. _teacherDesktopIconInfo.push(
  2250. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2251. { "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)" } },
  2252. )
  2253. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2254. }
  2255. 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') {
  2256. _teacherDesktopIconInfo.push(
  2257. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2258. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2259. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2260. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2261. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2262. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2263. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2264. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2265. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2266. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2267. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2268. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2269. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2270. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2271. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2272. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2273. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2274. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2275. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2276. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2277. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2278. )
  2279. }
  2280. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2281. _teacherDesktopIconInfo.push(
  2282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2283. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2284. )
  2285. }
  2286. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2287. _nsfxTeacherDeskIconInfo.push(
  2288. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2289. )
  2290. }
  2291. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2292. // _teacherDesktopIconInfo.push(
  2293. // )
  2294. // }
  2295. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2296. _teacherDesktopIconInfo.push(
  2297. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2298. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2299. )
  2300. }
  2301. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2302. _teacherDesktopIconInfo.push(
  2303. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2305. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2307. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2308. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2309. )
  2310. _studentDesktopIconInfo.push(
  2311. )
  2312. }
  2313. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2314. _teacherDesktopIconInfo.push(
  2315. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2316. )
  2317. _studentDesktopIconInfo.push(
  2318. )
  2319. }
  2320. //010606 组织
  2321. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2322. _teacherDesktopIconInfo.push(
  2323. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2324. )
  2325. _studentDesktopIconInfo.push(
  2326. )
  2327. }
  2328. //麒麟二中 和 民新小学
  2329. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2330. _teacherDesktopIconInfo.push(
  2331. )
  2332. }
  2333. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2334. _teacherDesktopIconInfo.push(
  2335. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2336. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2337. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2338. )
  2339. }
  2340. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2341. _hkTeacherDeskIconInfo.push(
  2342. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2343. )
  2344. }
  2345. //北师大附中(010601)
  2346. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2347. // _teacherDesktopIconInfo.push(
  2348. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2349. // )
  2350. // _studentDesktopIconInfo.push(
  2351. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2352. // )
  2353. // }
  2354. //樂善堂余近卿中學
  2355. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2356. _teacherDesktopIconInfo.push(
  2357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2358. )
  2359. }
  2360. // Education Artificial Intelligence
  2361. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2362. _teacherDesktopIconInfo.push(
  2363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2364. )
  2365. }
  2366. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2367. _teacherDesktopIconInfo.push(
  2368. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2369. )
  2370. }
  2371. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2372. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2373. _teacherDesktopIconInfo.push(
  2374. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2375. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2376. )
  2377. }
  2378. //麒麟二中
  2379. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2380. _studentDesktopIconInfo.push(
  2381. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2382. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2383. )
  2384. }
  2385. //万科双语
  2386. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2387. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2388. if (el.Name == '项目管理') {
  2389. el.Name = 'PBL项目'
  2390. }
  2391. return el
  2392. })
  2393. _studentDesktopIconInfo3.push(
  2394. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2395. )
  2396. }
  2397. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2398. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2399. return el.Name != '魔盒识字' && el.Name != '24点'
  2400. })
  2401. }
  2402. 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) {
  2403. _studentDesktopIconInfo.push(
  2404. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2405. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2406. )
  2407. }
  2408. //循环创建桌面图标
  2409. if (type == 1) {
  2410. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2411. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_studentDesktopIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_studentDesktopIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2428. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2429. _content = $$("div", {
  2430. className: "U_MD_D_KO",
  2431. "onmousedown": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2435. "onclick": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_hkZJLSStudentDeskIconInfo[i]])
  2439. }, _frag); //
  2440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2443. } //
  2444. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2445. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_ytyStudentDeskIconInfo[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_ytyStudentDeskIconInfo[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2460. } //
  2461. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2462. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2463. _content = $$("div", {
  2464. className: "U_MD_D_KO",
  2465. "onmousedown": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_jccssylStudentDeskIconInfo[i]]),
  2469. "onclick": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_jccssylStudentDeskIconInfo[i]])
  2473. }, _frag); //
  2474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2477. }
  2478. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2479. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2480. _content = $$("div", {
  2481. className: "U_MD_D_KO",
  2482. "onmousedown": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_scnuaiStudentDeskIconInfo[i]]),
  2486. "onclick": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_scnuaiStudentDeskIconInfo[i]])
  2490. }, _frag); //
  2491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2494. }
  2495. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2496. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2497. _content = $$("div", {
  2498. className: "U_MD_D_KO",
  2499. "onmousedown": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_caleStudentDeskIconInfo[i]]),
  2503. "onclick": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_caleStudentDeskIconInfo[i]])
  2507. }, _frag); //
  2508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2511. }
  2512. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2513. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2514. _content = $$("div", {
  2515. className: "U_MD_D_KO",
  2516. "onmousedown": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_thuioeStudentDeskIconInfo[i]]),
  2520. "onclick": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_thuioeStudentDeskIconInfo[i]])
  2524. }, _frag); //
  2525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2528. }
  2529. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2530. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2531. _content = $$("div", {
  2532. className: "U_MD_D_KO",
  2533. "onmousedown": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_tpcStudentDeskIconInfo[i]]),
  2537. "onclick": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_tpcStudentDeskIconInfo[i]])
  2541. }, _frag); //
  2542. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2543. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2544. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2545. } //
  2546. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2547. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2548. _content = $$("div", {
  2549. className: "U_MD_D_KO",
  2550. "onmousedown": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_chjyjStudentDeskIconInfo[i]]),
  2554. "onclick": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_chjyjStudentDeskIconInfo[i]])
  2558. }, _frag); //
  2559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2562. }
  2563. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2564. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2565. _content = $$("div", {
  2566. className: "U_MD_D_KO",
  2567. "onmousedown": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_szjkyStudentDeskIconInfo[i]]),
  2571. "onclick": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_szjkyStudentDeskIconInfo[i]])
  2575. }, _frag); //
  2576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2579. }
  2580. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2581. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2582. _content = $$("div", {
  2583. className: "U_MD_D_KO",
  2584. "onmousedown": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_x020201StudentDeskIconInfo[i]]),
  2588. "onclick": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_x020201StudentDeskIconInfo[i]])
  2592. }, _frag); //
  2593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2596. }
  2597. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2598. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2599. _content = $$("div", {
  2600. className: "U_MD_D_KO",
  2601. "onmousedown": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_SCNUETStudentDeskIconInfo[i]]),
  2605. "onclick": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_SCNUETStudentDeskIconInfo[i]])
  2609. }, _frag); //
  2610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2613. }
  2614. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2615. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2616. _content = $$("div", {
  2617. className: "U_MD_D_KO",
  2618. "onmousedown": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_dseiStudentDeskIconInfo[i]]),
  2622. "onclick": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_dseiStudentDeskIconInfo[i]])
  2626. }, _frag); //
  2627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2630. }
  2631. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2632. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2633. _content = $$("div", {
  2634. className: "U_MD_D_KO",
  2635. "onmousedown": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2639. "onclick": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2643. }, _frag); //
  2644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2647. }
  2648. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2649. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2650. _content = $$("div", {
  2651. className: "U_MD_D_KO",
  2652. "onmousedown": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_nsfxStudentDeskIconInfo[i]]),
  2656. "onclick": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_nsfxStudentDeskIconInfo[i]])
  2660. }, _frag); //
  2661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2664. }
  2665. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2666. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2667. _content = $$("div", {
  2668. className: "U_MD_D_KO",
  2669. "onmousedown": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_stiaStudentDeskIconInfo[i]]),
  2673. "onclick": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_stiaStudentDeskIconInfo[i]])
  2677. }, _frag); //
  2678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2681. }
  2682. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2683. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2684. _content = $$("div", {
  2685. className: "U_MD_D_KO",
  2686. "onmousedown": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_szdjgStudentDeskIconInfo[i]]),
  2690. "onclick": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_szdjgStudentDeskIconInfo[i]])
  2694. }, _frag); //
  2695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2698. }
  2699. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2700. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2701. _content = $$("div", {
  2702. className: "U_MD_D_KO",
  2703. "onmousedown": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_x010607StudentDeskIconInfo[i]]),
  2707. "onclick": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_x010607StudentDeskIconInfo[i]])
  2711. }, _frag); //
  2712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2715. }
  2716. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2717. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2718. _content = $$("div", {
  2719. className: "U_MD_D_KO",
  2720. "onmousedown": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_xhlyStudentDeskIconInfo[i]]),
  2724. "onclick": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_xhlyStudentDeskIconInfo[i]])
  2728. }, _frag); //
  2729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2732. }
  2733. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2734. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2735. _content = $$("div", {
  2736. className: "U_MD_D_KO",
  2737. "onmousedown": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2741. "onclick": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2745. }, _frag); //
  2746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2749. }
  2750. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2751. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2752. _content = $$("div", {
  2753. className: "U_MD_D_KO",
  2754. "onmousedown": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_x010503StudentDeskIconInfo[i]]),
  2758. "onclick": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_x010503StudentDeskIconInfo[i]])
  2762. }, _frag); //
  2763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2766. }
  2767. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2768. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2769. _content = $$("div", {
  2770. className: "U_MD_D_KO",
  2771. "onmousedown": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_x010504StudentDeskIconInfo[i]]),
  2775. "onclick": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_x010504StudentDeskIconInfo[i]])
  2779. }, _frag); //
  2780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2783. }
  2784. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2785. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2786. _content = $$("div", {
  2787. className: "U_MD_D_KO",
  2788. "onmousedown": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_x010505StudentDeskIconInfo[i]]),
  2792. "onclick": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_x010505StudentDeskIconInfo[i]])
  2796. }, _frag); //
  2797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2800. }
  2801. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2802. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2803. _content = $$("div", {
  2804. className: "U_MD_D_KO",
  2805. "onmousedown": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_x010404StudentDeskIconInfo[i]]),
  2809. "onclick": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_x010404StudentDeskIconInfo[i]])
  2813. }, _frag); //
  2814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2817. }
  2818. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2819. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2820. _content = $$("div", {
  2821. className: "U_MD_D_KO",
  2822. "onmousedown": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_x010204StudentDeskIconInfo[i]]),
  2826. "onclick": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_x010204StudentDeskIconInfo[i]])
  2830. }, _frag); //
  2831. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2832. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2833. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2834. }
  2835. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2836. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2837. _content = $$("div", {
  2838. className: "U_MD_D_KO",
  2839. "onmousedown": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_x320101StudentDeskIconInfo[i]]),
  2843. "onclick": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_x320101StudentDeskIconInfo[i]])
  2847. }, _frag); //
  2848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2851. }
  2852. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2853. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2854. _content = $$("div", {
  2855. className: "U_MD_D_KO",
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_trailStudentDeskIconInfo[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_trailStudentDeskIconInfo[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2868. }
  2869. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2870. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2871. _content = $$("div", {
  2872. className: "U_MD_D_KO",
  2873. "onmousedown": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_trialStudentDeskIconInfo[i]]),
  2877. "onclick": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_trialStudentDeskIconInfo[i]])
  2881. }, _frag); //
  2882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2885. }
  2886. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2887. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2888. _content = $$("div", {
  2889. className: "U_MD_D_KO",
  2890. "onmousedown": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2894. "onclick": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2898. }, _frag); //
  2899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2902. }
  2903. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2904. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2905. _content = $$("div", {
  2906. className: "U_MD_D_KO",
  2907. "onmousedown": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_szsyStudentDeskIconInfo[i]]),
  2911. "onclick": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_szsyStudentDeskIconInfo[i]])
  2915. }, _frag); //
  2916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2919. }
  2920. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2921. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2922. _content = $$("div", {
  2923. className: "U_MD_D_KO",
  2924. "onmousedown": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_demoCocoStudentDeskIconInfo[i]]),
  2928. "onclick": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_demoCocoStudentDeskIconInfo[i]])
  2932. }, _frag); //
  2933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2936. }
  2937. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2938. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2939. _content = $$("div", {
  2940. className: "U_MD_D_KO",
  2941. "onmousedown": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_x010608StudentDeskIconInfo[i]]),
  2945. "onclick": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_x010608StudentDeskIconInfo[i]])
  2949. }, _frag); //
  2950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2953. }
  2954. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2955. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2956. _content = $$("div", {
  2957. className: "U_MD_D_KO",
  2958. "onmousedown": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_x010611StudentDeskIconInfo[i]]),
  2962. "onclick": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_x010611StudentDeskIconInfo[i]])
  2966. }, _frag); //
  2967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2970. }
  2971. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2972. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2973. _content = $$("div", {
  2974. className: "U_MD_D_KO",
  2975. "onmousedown": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_x010612StudentDeskIconInfo[i]]),
  2979. "onclick": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_x010612StudentDeskIconInfo[i]])
  2983. }, _frag); //
  2984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2987. }
  2988. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2989. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2990. _content = $$("div", {
  2991. className: "U_MD_D_KO",
  2992. "onmousedown": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_tianyuantudentDeskIconInfo[i]]),
  2996. "onclick": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_tianyuantudentDeskIconInfo[i]])
  3000. }, _frag); //
  3001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3004. }
  3005. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3006. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3007. _content = $$("div", {
  3008. className: "U_MD_D_KO",
  3009. "onmousedown": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_siesStudentDeskIconInfo[i]]),
  3013. "onclick": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_siesStudentDeskIconInfo[i]])
  3017. }, _frag); //
  3018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3021. }
  3022. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3023. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3024. _content = $$("div", {
  3025. className: "U_MD_D_KO",
  3026. "onmousedown": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_guzmsStudentDeskIconInfo[i]]),
  3030. "onclick": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_guzmsStudentDeskIconInfo[i]])
  3034. }, _frag); //
  3035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3038. }
  3039. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3040. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3041. _content = $$("div", {
  3042. className: "U_MD_D_KO",
  3043. "onmousedown": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_hkStudentDeskIconInfo[i]]),
  3047. "onclick": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_hkStudentDeskIconInfo[i]])
  3051. }, _frag); //
  3052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3055. }
  3056. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3057. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_tycyStudentDeskIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_tycyStudentDeskIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3074. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_ckcpsStudentDeskIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_ckcpsStudentDeskIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3091. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3092. _content = $$("div", {
  3093. className: "U_MD_D_KO",
  3094. "onmousedown": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_hkaceStudentDeskIconInfo[i]]),
  3098. "onclick": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_hkaceStudentDeskIconInfo[i]])
  3102. }, _frag); //
  3103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3106. }
  3107. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3108. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3109. _content = $$("div", {
  3110. className: "U_MD_D_KO",
  3111. "onmousedown": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3115. "onclick": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_BSDNSstudentDesktopIconInfo[i]])
  3119. }, _frag); //
  3120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3123. }
  3124. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3125. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3126. _content = $$("div", {
  3127. className: "U_MD_D_KO",
  3128. "onmousedown": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_cocobizStudentDeskIconInfo[i]]),
  3132. "onclick": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_cocobizStudentDeskIconInfo[i]])
  3136. }, _frag); //
  3137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3140. }
  3141. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3142. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3143. _content = $$("div", {
  3144. className: "U_MD_D_KO",
  3145. "onmousedown": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3149. "onclick": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_xxzjkyStudentDeskIconInfo[i]])
  3153. }, _frag); //
  3154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3157. }
  3158. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3159. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3160. _content = $$("div", {
  3161. className: "U_MD_D_KO",
  3162. "onmousedown": U.UF.C.closure(function (obj) {
  3163. //防止拖动图标即打开了桌面应用
  3164. U.MD.D.click(this, obj);
  3165. }, [_studentDesktopIconInfo[i]]),
  3166. "onclick": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_studentDesktopIconInfo[i]])
  3170. }, _frag); //
  3171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3174. }
  3175. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3176. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3177. _content = $$("div", {
  3178. className: "U_MD_D_KO",
  3179. "onmousedown": U.UF.C.closure(function (obj) {
  3180. //防止拖动图标即打开了桌面应用
  3181. U.MD.D.click(this, obj);
  3182. }, [_tcStudentDeskIconInfo[i]]),
  3183. "onclick": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_tcStudentDeskIconInfo[i]])
  3187. }, _frag); //
  3188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3191. }
  3192. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3193. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3194. _content = $$("div", {
  3195. className: "U_MD_D_KO",
  3196. "onmousedown": U.UF.C.closure(function (obj) {
  3197. //防止拖动图标即打开了桌面应用
  3198. U.MD.D.click(this, obj);
  3199. }, [_szscStudentDeskIconInfo[i]]),
  3200. "onclick": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_szscStudentDeskIconInfo[i]])
  3204. }, _frag); //
  3205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3208. }
  3209. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3210. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3211. _content = $$("div", {
  3212. className: "U_MD_D_KO",
  3213. "onmousedown": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_studentDesktopIconInfo3[i]]),
  3217. "onclick": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_studentDesktopIconInfo3[i]])
  3221. }, _frag); //
  3222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3225. }
  3226. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3227. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_studentDesktopIconInfo2[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_studentDesktopIconInfo2[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3244. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3245. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_wanketeacherDesktopIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_wanketeacherDesktopIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3264. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3265. _content = $$("div", {
  3266. className: "U_MD_D_KO",
  3267. "onmousedown": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_wankeAdminDesktopIconInfo[i]]),
  3271. "onclick": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_wankeAdminDesktopIconInfo[i]])
  3275. }, _frag); //
  3276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3279. }
  3280. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3281. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3282. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3283. continue
  3284. }
  3285. _content = $$("div", {
  3286. className: "U_MD_D_KO",
  3287. "onmousedown": U.UF.C.closure(function (obj) {
  3288. //防止拖动图标即打开了桌面应用
  3289. U.MD.D.click(this, obj);
  3290. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3291. "onclick": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_scnuaiTeacherDeskIconInfo[i]])
  3295. }, _frag); //
  3296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3299. }
  3300. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3301. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3302. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3303. continue
  3304. }
  3305. _content = $$("div", {
  3306. className: "U_MD_D_KO",
  3307. "onmousedown": U.UF.C.closure(function (obj) {
  3308. //防止拖动图标即打开了桌面应用
  3309. U.MD.D.click(this, obj);
  3310. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3311. "onclick": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_BSDNSteacherDesktopIconInfo[i]])
  3315. }, _frag); //
  3316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3319. }
  3320. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3321. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3322. _content = $$("div", {
  3323. className: "U_MD_D_KO",
  3324. "onmousedown": U.UF.C.closure(function (obj) {
  3325. //防止拖动图标即打开了桌面应用
  3326. U.MD.D.click(this, obj);
  3327. }, [_scnuaiAdminDeskIconInfo[i]]),
  3328. "onclick": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_scnuaiAdminDeskIconInfo[i]])
  3332. }, _frag); //
  3333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3336. }
  3337. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3338. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3339. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3340. continue
  3341. }
  3342. _content = $$("div", {
  3343. className: "U_MD_D_KO",
  3344. "onmousedown": U.UF.C.closure(function (obj) {
  3345. //防止拖动图标即打开了桌面应用
  3346. U.MD.D.click(this, obj);
  3347. }, [_jccssylTeacherDeskIconInfo[i]]),
  3348. "onclick": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_jccssylTeacherDeskIconInfo[i]])
  3352. }, _frag); //
  3353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3356. }
  3357. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3358. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3359. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3360. continue
  3361. }
  3362. _content = $$("div", {
  3363. className: "U_MD_D_KO",
  3364. "onmousedown": U.UF.C.closure(function (obj) {
  3365. //防止拖动图标即打开了桌面应用
  3366. U.MD.D.click(this, obj);
  3367. }, [_caleTeacherDeskIconInfo[i]]),
  3368. "onclick": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_caleTeacherDeskIconInfo[i]])
  3372. }, _frag); //
  3373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3376. }
  3377. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3378. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3379. _content = $$("div", {
  3380. className: "U_MD_D_KO",
  3381. "onmousedown": U.UF.C.closure(function (obj) {
  3382. //防止拖动图标即打开了桌面应用
  3383. U.MD.D.click(this, obj);
  3384. }, [_tpcOrganizerDeskIconInfo[i]]),
  3385. "onclick": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_tpcOrganizerDeskIconInfo[i]])
  3389. }, _frag); //
  3390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3393. }
  3394. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3395. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3396. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3397. continue
  3398. }
  3399. _content = $$("div", {
  3400. className: "U_MD_D_KO",
  3401. "onmousedown": U.UF.C.closure(function (obj) {
  3402. //防止拖动图标即打开了桌面应用
  3403. U.MD.D.click(this, obj);
  3404. }, [_tpcTeacherDeskIconInfo[i]]),
  3405. "onclick": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_tpcTeacherDeskIconInfo[i]])
  3409. }, _frag); //
  3410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3413. }
  3414. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3415. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3416. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3417. continue
  3418. }
  3419. _content = $$("div", {
  3420. className: "U_MD_D_KO",
  3421. "onmousedown": U.UF.C.closure(function (obj) {
  3422. //防止拖动图标即打开了桌面应用
  3423. U.MD.D.click(this, obj);
  3424. }, [_teacherDesktopIconInfo2[i]]),
  3425. "onclick": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_teacherDesktopIconInfo2[i]])
  3429. }, _frag); //
  3430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3433. }
  3434. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3435. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3436. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3437. continue
  3438. }
  3439. _content = $$("div", {
  3440. className: "U_MD_D_KO",
  3441. "onmousedown": U.UF.C.closure(function (obj) {
  3442. //防止拖动图标即打开了桌面应用
  3443. U.MD.D.click(this, obj);
  3444. }, [_thuioeTeacherDeskIconInfo[i]]),
  3445. "onclick": U.UF.C.closure(function (obj) {
  3446. //防止拖动图标即打开了桌面应用
  3447. U.MD.D.click(this, obj);
  3448. }, [_thuioeTeacherDeskIconInfo[i]])
  3449. }, _frag); //
  3450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3453. }
  3454. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3455. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3456. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3457. continue
  3458. }
  3459. _content = $$("div", {
  3460. className: "U_MD_D_KO",
  3461. "onmousedown": U.UF.C.closure(function (obj) {
  3462. //防止拖动图标即打开了桌面应用
  3463. U.MD.D.click(this, obj);
  3464. }, [_lotechTeacherDeskIconInfo[i]]),
  3465. "onclick": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_lotechTeacherDeskIconInfo[i]])
  3469. }, _frag); //
  3470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3473. }//
  3474. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3475. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3476. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3477. continue
  3478. }
  3479. _content = $$("div", {
  3480. className: "U_MD_D_KO",
  3481. "onmousedown": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3485. "onclick": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3489. }, _frag); //
  3490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3493. }
  3494. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3495. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3496. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3497. continue
  3498. }
  3499. _content = $$("div", {
  3500. className: "U_MD_D_KO",
  3501. "onmousedown": U.UF.C.closure(function (obj) {
  3502. //防止拖动图标即打开了桌面应用
  3503. U.MD.D.click(this, obj);
  3504. }, [_siesTeacherDeskIconInfo[i]]),
  3505. "onclick": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_siesTeacherDeskIconInfo[i]])
  3509. }, _frag); //
  3510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3513. }
  3514. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3515. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3516. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3517. continue
  3518. }
  3519. _content = $$("div", {
  3520. className: "U_MD_D_KO",
  3521. "onmousedown": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_guzmsTeacherDeskIconInfo[i]]),
  3525. "onclick": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_guzmsTeacherDeskIconInfo[i]])
  3529. }, _frag); //
  3530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3533. }
  3534. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3535. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3536. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3537. continue
  3538. }
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_longhuaTeacherDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_longhuaTeacherDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3555. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3556. if(_role === 0 && _ytyTeacherDeskIconInfo[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. }, [_ytyTeacherDeskIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_ytyTeacherDeskIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3575. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3576. if(_role === 0 && _yunhaiTeacherDeskIconInfo[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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_yunhaiTeacherDeskIconInfo[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3593. } //_hkStudentDeskIconInfo
  3594. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3595. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3596. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3615. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3616. if(_role === 0 && _ricohTeacherDeskIconInfo[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. }, [_ricohTeacherDeskIconInfo[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_ricohTeacherDeskIconInfo[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3633. }
  3634. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3635. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3636. if(_role === 0 && _hkTeacherDeskIconInfo[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. }, [_hkTeacherDeskIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_hkTeacherDeskIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3655. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3656. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3657. continue
  3658. }
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_tycyTeacherDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_tycyTeacherDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3675. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3676. if(_role === 0 && _ckcpsTeacherDeskIconInfo[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. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_ckcpsTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3695. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3696. if(_role === 0 && _hkaceTeacherDeskIconInfo[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. }, [_hkaceTeacherDeskIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_hkaceTeacherDeskIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3715. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3716. if(_role === 0 && _cocobizTeacherDeskIconInfo[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. }, [_cocobizTeacherDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_cocobizTeacherDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3735. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3736. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. }
  3754. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3755. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3756. _content = $$("div", {
  3757. className: "U_MD_D_KO",
  3758. "onmousedown": U.UF.C.closure(function (obj) {
  3759. //防止拖动图标即打开了桌面应用
  3760. U.MD.D.click(this, obj);
  3761. }, [_gdjgAdminDeskIconInfo[i]]),
  3762. "onclick": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_gdjgAdminDeskIconInfo[i]])
  3766. }, _frag); //
  3767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3770. }
  3771. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3772. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3773. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3774. continue
  3775. }
  3776. _content = $$("div", {
  3777. className: "U_MD_D_KO",
  3778. "onmousedown": U.UF.C.closure(function (obj) {
  3779. //防止拖动图标即打开了桌面应用
  3780. U.MD.D.click(this, obj);
  3781. }, [_gdjgTeacherDeskIconInfo[i]]),
  3782. "onclick": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_gdjgTeacherDeskIconInfo[i]])
  3786. }, _frag); //
  3787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3790. }
  3791. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3792. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3793. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3794. continue
  3795. }
  3796. _content = $$("div", {
  3797. className: "U_MD_D_KO",
  3798. "onmousedown": U.UF.C.closure(function (obj) {
  3799. //防止拖动图标即打开了桌面应用
  3800. U.MD.D.click(this, obj);
  3801. }, [_szherTeacherDeskIconInfo[i]]),
  3802. "onclick": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_szherTeacherDeskIconInfo[i]])
  3806. }, _frag); //
  3807. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3808. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3809. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3810. }
  3811. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3812. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3813. _content = $$("div", {
  3814. className: "U_MD_D_KO",
  3815. "onmousedown": U.UF.C.closure(function (obj) {
  3816. //防止拖动图标即打开了桌面应用
  3817. U.MD.D.click(this, obj);
  3818. }, [_heyuannAdminDeskIconInfo[i]]),
  3819. "onclick": U.UF.C.closure(function (obj) {
  3820. //防止拖动图标即打开了桌面应用
  3821. U.MD.D.click(this, obj);
  3822. }, [_heyuannAdminDeskIconInfo[i]])
  3823. }, _frag); //
  3824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3827. }
  3828. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3829. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3830. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3831. continue
  3832. }
  3833. _content = $$("div", {
  3834. className: "U_MD_D_KO",
  3835. "onmousedown": U.UF.C.closure(function (obj) {
  3836. //防止拖动图标即打开了桌面应用
  3837. U.MD.D.click(this, obj);
  3838. }, [_heyuanTeacherDeskIconInfo[i]]),
  3839. "onclick": U.UF.C.closure(function (obj) {
  3840. //防止拖动图标即打开了桌面应用
  3841. U.MD.D.click(this, obj);
  3842. }, [_heyuanTeacherDeskIconInfo[i]])
  3843. }, _frag); //
  3844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3847. } //
  3848. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3849. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3850. _content = $$("div", {
  3851. className: "U_MD_D_KO",
  3852. "onmousedown": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_dseiAdminDeskIconInfo[i]]),
  3856. "onclick": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_dseiAdminDeskIconInfo[i]])
  3860. }, _frag); //
  3861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3864. }
  3865. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3866. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3867. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3868. continue
  3869. }
  3870. _content = $$("div", {
  3871. className: "U_MD_D_KO",
  3872. "onmousedown": U.UF.C.closure(function (obj) {
  3873. //防止拖动图标即打开了桌面应用
  3874. U.MD.D.click(this, obj);
  3875. }, [_dseiTeacherDeskIconInfo[i]]),
  3876. "onclick": U.UF.C.closure(function (obj) {
  3877. //防止拖动图标即打开了桌面应用
  3878. U.MD.D.click(this, obj);
  3879. }, [_dseiTeacherDeskIconInfo[i]])
  3880. }, _frag); //
  3881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3884. } //
  3885. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3886. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3887. _content = $$("div", {
  3888. className: "U_MD_D_KO",
  3889. "onmousedown": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_chjyjAdminDeskIconInfo[i]]),
  3893. "onclick": U.UF.C.closure(function (obj) {
  3894. //防止拖动图标即打开了桌面应用
  3895. U.MD.D.click(this, obj);
  3896. }, [_chjyjAdminDeskIconInfo[i]])
  3897. }, _frag); //
  3898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3901. }//
  3902. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3903. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3904. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3905. continue
  3906. }
  3907. _content = $$("div", {
  3908. className: "U_MD_D_KO",
  3909. "onmousedown": U.UF.C.closure(function (obj) {
  3910. //防止拖动图标即打开了桌面应用
  3911. U.MD.D.click(this, obj);
  3912. }, [_chjyjTeacherDeskIconInfo[i]]),
  3913. "onclick": U.UF.C.closure(function (obj) {
  3914. //防止拖动图标即打开了桌面应用
  3915. U.MD.D.click(this, obj);
  3916. }, [_chjyjTeacherDeskIconInfo[i]])
  3917. }, _frag); //
  3918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3921. }
  3922. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3923. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3924. _content = $$("div", {
  3925. className: "U_MD_D_KO",
  3926. "onmousedown": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_szjkyAdminDeskIconInfo[i]]),
  3930. "onclick": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_szjkyAdminDeskIconInfo[i]])
  3934. }, _frag); //
  3935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3938. }//
  3939. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3940. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3941. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3942. continue
  3943. }
  3944. _content = $$("div", {
  3945. className: "U_MD_D_KO",
  3946. "onmousedown": U.UF.C.closure(function (obj) {
  3947. //防止拖动图标即打开了桌面应用
  3948. U.MD.D.click(this, obj);
  3949. }, [_szjkyTeacherDeskIconInfo[i]]),
  3950. "onclick": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_szjkyTeacherDeskIconInfo[i]])
  3954. }, _frag); //
  3955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3958. }
  3959. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3960. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_x020201AdminDeskIconInfo[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_x020201AdminDeskIconInfo[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3975. }//
  3976. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3977. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3978. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_x020201TeacherDeskIconInfo[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_x020201TeacherDeskIconInfo[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3997. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3998. _content = $$("div", {
  3999. className: "U_MD_D_KO",
  4000. "onmousedown": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_SCNUETAdminDeskIconInfo[i]]),
  4004. "onclick": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_SCNUETAdminDeskIconInfo[i]])
  4008. }, _frag); //
  4009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4012. }//
  4013. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4014. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4015. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4016. continue
  4017. }
  4018. _content = $$("div", {
  4019. className: "U_MD_D_KO",
  4020. "onmousedown": U.UF.C.closure(function (obj) {
  4021. //防止拖动图标即打开了桌面应用
  4022. U.MD.D.click(this, obj);
  4023. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4024. "onclick": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_SCNUETTeacherDeskIconInfo[i]])
  4028. }, _frag); //
  4029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4032. }
  4033. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4034. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4035. _content = $$("div", {
  4036. className: "U_MD_D_KO",
  4037. "onmousedown": U.UF.C.closure(function (obj) {
  4038. //防止拖动图标即打开了桌面应用
  4039. U.MD.D.click(this, obj);
  4040. }, [_futianAdminDeskIconInfo[i]]),
  4041. "onclick": U.UF.C.closure(function (obj) {
  4042. //防止拖动图标即打开了桌面应用
  4043. U.MD.D.click(this, obj);
  4044. }, [_futianAdminDeskIconInfo[i]])
  4045. }, _frag); //
  4046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4049. }
  4050. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4051. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4052. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4053. continue
  4054. }
  4055. _content = $$("div", {
  4056. className: "U_MD_D_KO",
  4057. "onmousedown": U.UF.C.closure(function (obj) {
  4058. //防止拖动图标即打开了桌面应用
  4059. U.MD.D.click(this, obj);
  4060. }, [_futianTeacherDeskIconInfo[i]]),
  4061. "onclick": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_futianTeacherDeskIconInfo[i]])
  4065. }, _frag); //
  4066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4069. }
  4070. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4071. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4072. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4073. continue
  4074. }
  4075. _content = $$("div", {
  4076. className: "U_MD_D_KO",
  4077. "onmousedown": U.UF.C.closure(function (obj) {
  4078. //防止拖动图标即打开了桌面应用
  4079. U.MD.D.click(this, obj);
  4080. }, [_MingdeTeacherDeskIcon[i]]),
  4081. "onclick": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_MingdeTeacherDeskIcon[i]])
  4085. }, _frag); //
  4086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4089. }
  4090. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4091. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4092. _content = $$("div", {
  4093. className: "U_MD_D_KO",
  4094. "onmousedown": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_lhsAdminDesktopIconInfo[i]]),
  4098. "onclick": U.UF.C.closure(function (obj) {
  4099. //防止拖动图标即打开了桌面应用
  4100. U.MD.D.click(this, obj);
  4101. }, [_lhsAdminDesktopIconInfo[i]])
  4102. }, _frag); //
  4103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4106. }
  4107. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4108. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4109. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4110. continue
  4111. }
  4112. _content = $$("div", {
  4113. className: "U_MD_D_KO",
  4114. "onmousedown": U.UF.C.closure(function (obj) {
  4115. //防止拖动图标即打开了桌面应用
  4116. U.MD.D.click(this, obj);
  4117. }, [_lhsteacherDesktopIconInfo[i]]),
  4118. "onclick": U.UF.C.closure(function (obj) {
  4119. //防止拖动图标即打开了桌面应用
  4120. U.MD.D.click(this, obj);
  4121. }, [_lhsteacherDesktopIconInfo[i]])
  4122. }, _frag); //
  4123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4126. }
  4127. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4128. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4129. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4130. continue
  4131. }
  4132. _content = $$("div", {
  4133. className: "U_MD_D_KO",
  4134. "onmousedown": U.UF.C.closure(function (obj) {
  4135. //防止拖动图标即打开了桌面应用
  4136. U.MD.D.click(this, obj);
  4137. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4138. "onclick": U.UF.C.closure(function (obj) {
  4139. //防止拖动图标即打开了桌面应用
  4140. U.MD.D.click(this, obj);
  4141. }, [_zhoujiateacherDesktopIconInfo[i]])
  4142. }, _frag); //
  4143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4146. }
  4147. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4148. for (i = 0; i < _hanDeskIcon.length; i++) {
  4149. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4150. continue
  4151. }
  4152. _content = $$("div", {
  4153. className: "U_MD_D_KO",
  4154. "onmousedown": U.UF.C.closure(function (obj) {
  4155. //防止拖动图标即打开了桌面应用
  4156. U.MD.D.click(this, obj);
  4157. }, [_hanDeskIcon[i]]),
  4158. "onclick": U.UF.C.closure(function (obj) {
  4159. //防止拖动图标即打开了桌面应用
  4160. U.MD.D.click(this, obj);
  4161. }, [_hanDeskIcon[i]])
  4162. }, _frag); //
  4163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4166. }
  4167. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4168. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4169. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4170. continue
  4171. }
  4172. _content = $$("div", {
  4173. className: "U_MD_D_KO",
  4174. "onmousedown": U.UF.C.closure(function (obj) {
  4175. //防止拖动图标即打开了桌面应用
  4176. U.MD.D.click(this, obj);
  4177. }, [_orgStemDeskIcon[i]]),
  4178. "onclick": U.UF.C.closure(function (obj) {
  4179. //防止拖动图标即打开了桌面应用
  4180. U.MD.D.click(this, obj);
  4181. }, [_orgStemDeskIcon[i]])
  4182. }, _frag); //
  4183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4186. }
  4187. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4188. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4189. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4190. continue
  4191. }
  4192. _content = $$("div", {
  4193. className: "U_MD_D_KO",
  4194. "onmousedown": U.UF.C.closure(function (obj) {
  4195. //防止拖动图标即打开了桌面应用
  4196. U.MD.D.click(this, obj);
  4197. }, [_szulsDeskIcon[i]]),
  4198. "onclick": U.UF.C.closure(function (obj) {
  4199. //防止拖动图标即打开了桌面应用
  4200. U.MD.D.click(this, obj);
  4201. }, [_szulsDeskIcon[i]])
  4202. }, _frag); //
  4203. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4204. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4205. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4206. }
  4207. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4208. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4209. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4210. continue
  4211. }
  4212. _content = $$("div", {
  4213. className: "U_MD_D_KO",
  4214. "onmousedown": U.UF.C.closure(function (obj) {
  4215. //防止拖动图标即打开了桌面应用
  4216. U.MD.D.click(this, obj);
  4217. }, [_orgDesktopIconInfo[i]]),
  4218. "onclick": U.UF.C.closure(function (obj) {
  4219. //防止拖动图标即打开了桌面应用
  4220. U.MD.D.click(this, obj);
  4221. }, [_orgDesktopIconInfo[i]])
  4222. }, _frag); //
  4223. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4224. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4225. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4226. }
  4227. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4228. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4229. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4230. continue
  4231. }
  4232. _content = $$("div", {
  4233. className: "U_MD_D_KO",
  4234. "onmousedown": U.UF.C.closure(function (obj) {
  4235. //防止拖动图标即打开了桌面应用
  4236. U.MD.D.click(this, obj);
  4237. }, [_schoolDesktopIconInfo[i]]),
  4238. "onclick": U.UF.C.closure(function (obj) {
  4239. //防止拖动图标即打开了桌面应用
  4240. U.MD.D.click(this, obj);
  4241. }, [_schoolDesktopIconInfo[i]])
  4242. }, _frag); //
  4243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4246. }
  4247. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4248. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4249. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4250. continue
  4251. }
  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. }, [_GMteacherDesktopIconInfo[i]]),
  4258. "onclick": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_GMteacherDesktopIconInfo[i]])
  4262. }, _frag); //
  4263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4266. }
  4267. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4268. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4269. if(_role === 0 && _SONGteacherDesktopIconInfo[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. }, [_SONGteacherDesktopIconInfo[i]]),
  4278. "onclick": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_SONGteacherDesktopIconInfo[i]])
  4282. }, _frag); //
  4283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4286. }
  4287. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4288. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4289. _content = $$("div", {
  4290. className: "U_MD_D_KO",
  4291. "onmousedown": U.UF.C.closure(function (obj) {
  4292. //防止拖动图标即打开了桌面应用
  4293. U.MD.D.click(this, obj);
  4294. }, [_GMstudentDesktopIconInfo[i]]),
  4295. "onclick": U.UF.C.closure(function (obj) {
  4296. //防止拖动图标即打开了桌面应用
  4297. U.MD.D.click(this, obj);
  4298. }, [_GMstudentDesktopIconInfo[i]])
  4299. }, _frag); //
  4300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4303. }
  4304. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4305. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4306. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4307. continue
  4308. }
  4309. _content = $$("div", {
  4310. className: "U_MD_D_KO",
  4311. "onmousedown": U.UF.C.closure(function (obj) {
  4312. //防止拖动图标即打开了桌面应用
  4313. U.MD.D.click(this, obj);
  4314. }, [_tcTeacherDeskIconInfo[i]]),
  4315. "onclick": U.UF.C.closure(function (obj) {
  4316. //防止拖动图标即打开了桌面应用
  4317. U.MD.D.click(this, obj);
  4318. }, [_tcTeacherDeskIconInfo[i]])
  4319. }, _frag); //
  4320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4323. }
  4324. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4325. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4326. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4327. continue
  4328. }
  4329. _content = $$("div", {
  4330. className: "U_MD_D_KO",
  4331. "onmousedown": U.UF.C.closure(function (obj) {
  4332. //防止拖动图标即打开了桌面应用
  4333. U.MD.D.click(this, obj);
  4334. }, [_tcOrganizerDeskIconInfo[i]]),
  4335. "onclick": U.UF.C.closure(function (obj) {
  4336. //防止拖动图标即打开了桌面应用
  4337. U.MD.D.click(this, obj);
  4338. }, [_tcOrganizerDeskIconInfo[i]])
  4339. }, _frag); //
  4340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4343. }
  4344. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4345. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4346. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4347. continue
  4348. }
  4349. _content = $$("div", {
  4350. className: "U_MD_D_KO",
  4351. "onmousedown": U.UF.C.closure(function (obj) {
  4352. //防止拖动图标即打开了桌面应用
  4353. U.MD.D.click(this, obj);
  4354. }, [_szscTeacherDeskIconInfo[i]]),
  4355. "onclick": U.UF.C.closure(function (obj) {
  4356. //防止拖动图标即打开了桌面应用
  4357. U.MD.D.click(this, obj);
  4358. }, [_szscTeacherDeskIconInfo[i]])
  4359. }, _frag); //
  4360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4363. }
  4364. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4365. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4366. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4367. continue
  4368. }
  4369. _content = $$("div", {
  4370. className: "U_MD_D_KO",
  4371. "onmousedown": U.UF.C.closure(function (obj) {
  4372. //防止拖动图标即打开了桌面应用
  4373. U.MD.D.click(this, obj);
  4374. }, [_szscOrganizerDeskIconInfo[i]]),
  4375. "onclick": U.UF.C.closure(function (obj) {
  4376. //防止拖动图标即打开了桌面应用
  4377. U.MD.D.click(this, obj);
  4378. }, [_szscOrganizerDeskIconInfo[i]])
  4379. }, _frag); //
  4380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4383. }
  4384. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4385. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4386. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4387. continue
  4388. }
  4389. _content = $$("div", {
  4390. className: "U_MD_D_KO",
  4391. "onmousedown": U.UF.C.closure(function (obj) {
  4392. //防止拖动图标即打开了桌面应用
  4393. U.MD.D.click(this, obj);
  4394. }, [_nsfxTeacherDeskIconInfo[i]]),
  4395. "onclick": U.UF.C.closure(function (obj) {
  4396. //防止拖动图标即打开了桌面应用
  4397. U.MD.D.click(this, obj);
  4398. }, [_nsfxTeacherDeskIconInfo[i]])
  4399. }, _frag); //
  4400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4403. }
  4404. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4405. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4406. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4407. continue
  4408. }
  4409. _content = $$("div", {
  4410. className: "U_MD_D_KO",
  4411. "onmousedown": U.UF.C.closure(function (obj) {
  4412. //防止拖动图标即打开了桌面应用
  4413. U.MD.D.click(this, obj);
  4414. }, [_stiaTeacherDeskIconInfo[i]]),
  4415. "onclick": U.UF.C.closure(function (obj) {
  4416. //防止拖动图标即打开了桌面应用
  4417. U.MD.D.click(this, obj);
  4418. }, [_stiaTeacherDeskIconInfo[i]])
  4419. }, _frag); //
  4420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4423. }
  4424. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4425. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4426. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4427. continue
  4428. }
  4429. _content = $$("div", {
  4430. className: "U_MD_D_KO",
  4431. "onmousedown": U.UF.C.closure(function (obj) {
  4432. //防止拖动图标即打开了桌面应用
  4433. U.MD.D.click(this, obj);
  4434. }, [_szdjgTeacherDeskIconInfo[i]]),
  4435. "onclick": U.UF.C.closure(function (obj) {
  4436. //防止拖动图标即打开了桌面应用
  4437. U.MD.D.click(this, obj);
  4438. }, [_szdjgTeacherDeskIconInfo[i]])
  4439. }, _frag); //
  4440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4443. }
  4444. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4445. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4446. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4447. continue
  4448. }
  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. }, [_x010607TeacherDeskIconInfo[i]]),
  4455. "onclick": U.UF.C.closure(function (obj) {
  4456. //防止拖动图标即打开了桌面应用
  4457. U.MD.D.click(this, obj);
  4458. }, [_x010607TeacherDeskIconInfo[i]])
  4459. }, _frag); //
  4460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4463. }
  4464. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4465. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4466. if(_role === 0 && _xhlyTeacherDeskIconInfo[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. }, [_xhlyTeacherDeskIconInfo[i]]),
  4475. "onclick": U.UF.C.closure(function (obj) {
  4476. //防止拖动图标即打开了桌面应用
  4477. U.MD.D.click(this, obj);
  4478. }, [_xhlyTeacherDeskIconInfo[i]])
  4479. }, _frag); //
  4480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4483. }
  4484. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4485. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4486. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[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. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4495. "onclick": U.UF.C.closure(function (obj) {
  4496. //防止拖动图标即打开了桌面应用
  4497. U.MD.D.click(this, obj);
  4498. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4499. }, _frag); //
  4500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4503. }
  4504. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4505. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4506. if(_role === 0 && _x010503TeacherDeskIconInfo[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. }, [_x010503TeacherDeskIconInfo[i]]),
  4515. "onclick": U.UF.C.closure(function (obj) {
  4516. //防止拖动图标即打开了桌面应用
  4517. U.MD.D.click(this, obj);
  4518. }, [_x010503TeacherDeskIconInfo[i]])
  4519. }, _frag); //
  4520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4523. }
  4524. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4525. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4526. if(_role === 0 && _x010504TeacherDeskIconInfo[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. }, [_x010504TeacherDeskIconInfo[i]]),
  4535. "onclick": U.UF.C.closure(function (obj) {
  4536. //防止拖动图标即打开了桌面应用
  4537. U.MD.D.click(this, obj);
  4538. }, [_x010504TeacherDeskIconInfo[i]])
  4539. }, _frag); //
  4540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4543. }
  4544. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4545. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4546. if(_role === 0 && _x010505TeacherDeskIconInfo[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. }, [_x010505TeacherDeskIconInfo[i]]),
  4555. "onclick": U.UF.C.closure(function (obj) {
  4556. //防止拖动图标即打开了桌面应用
  4557. U.MD.D.click(this, obj);
  4558. }, [_x010505TeacherDeskIconInfo[i]])
  4559. }, _frag); //
  4560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4563. }
  4564. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4565. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4566. if(_role === 0 && _x010404TeacherDeskIconInfo[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. }, [_x010404TeacherDeskIconInfo[i]]),
  4575. "onclick": U.UF.C.closure(function (obj) {
  4576. //防止拖动图标即打开了桌面应用
  4577. U.MD.D.click(this, obj);
  4578. }, [_x010404TeacherDeskIconInfo[i]])
  4579. }, _frag); //
  4580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4583. }
  4584. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4585. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4586. if(_role === 0 && _x010204TeacherDeskIconInfo[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. }, [_x010204TeacherDeskIconInfo[i]]),
  4595. "onclick": U.UF.C.closure(function (obj) {
  4596. //防止拖动图标即打开了桌面应用
  4597. U.MD.D.click(this, obj);
  4598. }, [_x010204TeacherDeskIconInfo[i]])
  4599. }, _frag); //
  4600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4603. }
  4604. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4605. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4606. if(_role === 0 && _x320101TeacherDeskIconInfo[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. }, [_x320101TeacherDeskIconInfo[i]]),
  4615. "onclick": U.UF.C.closure(function (obj) {
  4616. //防止拖动图标即打开了桌面应用
  4617. U.MD.D.click(this, obj);
  4618. }, [_x320101TeacherDeskIconInfo[i]])
  4619. }, _frag); //
  4620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4623. }
  4624. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4625. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4626. if(_role === 0 && _trailTeacherDeskIconInfo[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. }, [_trailTeacherDeskIconInfo[i]]),
  4635. "onclick": U.UF.C.closure(function (obj) {
  4636. //防止拖动图标即打开了桌面应用
  4637. U.MD.D.click(this, obj);
  4638. }, [_trailTeacherDeskIconInfo[i]])
  4639. }, _frag); //
  4640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4643. }
  4644. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4645. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4646. if(_role === 0 && _trialTeacherDeskIconInfo[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. }, [_trialTeacherDeskIconInfo[i]]),
  4655. "onclick": U.UF.C.closure(function (obj) {
  4656. //防止拖动图标即打开了桌面应用
  4657. U.MD.D.click(this, obj);
  4658. }, [_trialTeacherDeskIconInfo[i]])
  4659. }, _frag); //
  4660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4663. }
  4664. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4665. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4666. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[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. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4675. "onclick": U.UF.C.closure(function (obj) {
  4676. //防止拖动图标即打开了桌面应用
  4677. U.MD.D.click(this, obj);
  4678. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4679. }, _frag); //
  4680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4683. }
  4684. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4685. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4686. if(_role === 0 && _szsyTeacherDeskIconInfo[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. }, [_szsyTeacherDeskIconInfo[i]]),
  4695. "onclick": U.UF.C.closure(function (obj) {
  4696. //防止拖动图标即打开了桌面应用
  4697. U.MD.D.click(this, obj);
  4698. }, [_szsyTeacherDeskIconInfo[i]])
  4699. }, _frag); //
  4700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4703. }
  4704. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4705. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4706. if(_role === 0 && _demoCocoTeacherDeskIconInfo[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. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4715. "onclick": U.UF.C.closure(function (obj) {
  4716. //防止拖动图标即打开了桌面应用
  4717. U.MD.D.click(this, obj);
  4718. }, [_demoCocoTeacherDeskIconInfo[i]])
  4719. }, _frag); //
  4720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4723. }
  4724. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4725. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4726. if(_role === 0 && _x010608TeacherDeskIconInfo[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. }, [_x010608TeacherDeskIconInfo[i]]),
  4735. "onclick": U.UF.C.closure(function (obj) {
  4736. //防止拖动图标即打开了桌面应用
  4737. U.MD.D.click(this, obj);
  4738. }, [_x010608TeacherDeskIconInfo[i]])
  4739. }, _frag); //
  4740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4743. }
  4744. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4745. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4746. if(_role === 0 && _x010611TeacherDeskIconInfo[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. }, [_x010611TeacherDeskIconInfo[i]]),
  4755. "onclick": U.UF.C.closure(function (obj) {
  4756. //防止拖动图标即打开了桌面应用
  4757. U.MD.D.click(this, obj);
  4758. }, [_x010611TeacherDeskIconInfo[i]])
  4759. }, _frag); //
  4760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4763. }
  4764. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4765. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4766. if(_role === 0 && _x010612TeacherDeskIconInfo[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. }, [_x010612TeacherDeskIconInfo[i]]),
  4775. "onclick": U.UF.C.closure(function (obj) {
  4776. //防止拖动图标即打开了桌面应用
  4777. U.MD.D.click(this, obj);
  4778. }, [_x010612TeacherDeskIconInfo[i]])
  4779. }, _frag); //
  4780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4783. }
  4784. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4785. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4786. if(_role === 0 && _tianyuanTeacherDeskIconInfo[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. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4795. "onclick": U.UF.C.closure(function (obj) {
  4796. //防止拖动图标即打开了桌面应用
  4797. U.MD.D.click(this, obj);
  4798. }, [_tianyuanTeacherDeskIconInfo[i]])
  4799. }, _frag); //
  4800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4803. }
  4804. }else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4805. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4806. if(_role === 0 && _MOAITeacherDeskIcon[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. }, [_MOAITeacherDeskIcon[i]]),
  4815. "onclick": U.UF.C.closure(function (obj) {
  4816. //防止拖动图标即打开了桌面应用
  4817. U.MD.D.click(this, obj);
  4818. }, [_MOAITeacherDeskIcon[i]])
  4819. }, _frag); //
  4820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4823. }
  4824. }else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4825. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  4826. _content = $$("div", {
  4827. className: "U_MD_D_KO",
  4828. "onmousedown": U.UF.C.closure(function (obj) {
  4829. //防止拖动图标即打开了桌面应用
  4830. U.MD.D.click(this, obj);
  4831. }, [_MOAIStudentDeskIcon[i]]),
  4832. "onclick": U.UF.C.closure(function (obj) {
  4833. //防止拖动图标即打开了桌面应用
  4834. U.MD.D.click(this, obj);
  4835. }, [_MOAIStudentDeskIcon[i]])
  4836. }, _frag); //
  4837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  4839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  4840. }
  4841. } else {
  4842. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4843. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4844. continue
  4845. }
  4846. _content = $$("div", {
  4847. className: "U_MD_D_KO",
  4848. "onmousedown": U.UF.C.closure(function (obj) {
  4849. //防止拖动图标即打开了桌面应用
  4850. U.MD.D.click(this, obj);
  4851. }, [_teacherDesktopIconInfo[i]]),
  4852. "onclick": U.UF.C.closure(function (obj) {
  4853. //防止拖动图标即打开了桌面应用
  4854. U.MD.D.click(this, obj);
  4855. }, [_teacherDesktopIconInfo[i]])
  4856. }, _frag); //
  4857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4860. }
  4861. }
  4862. } else {
  4863. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4864. _content = $$("div", {
  4865. className: "U_MD_D_KO",
  4866. style: { 'width': '124px', 'height': '145px' },
  4867. "onmousedown": U.UF.C.closure(function (obj) {
  4868. //防止拖动图标即打开了桌面应用
  4869. U.MD.D.click(this, obj);
  4870. }, [_easyDesktopIconInfo[i]]),
  4871. "onclick": U.UF.C.closure(function (obj) {
  4872. //防止拖动图标即打开了桌面应用
  4873. U.MD.D.click(this, obj);
  4874. }, [_easyDesktopIconInfo[i]])
  4875. }, _frag); //
  4876. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4879. }
  4880. }
  4881. if (type == 1) {
  4882. //加载好后给图标定位
  4883. U.MD.D.iconPostion($(_frag).Child());
  4884. } else {
  4885. //加载好后给图标定位
  4886. U.MD.D.iconPostion2($(_frag).Child());
  4887. }
  4888. //把图标加载到页面
  4889. el.appendChild(_frag);
  4890. }
  4891. /**
  4892. * 显示任务栏
  4893. *
  4894. * @param {element} 桌面元素
  4895. */
  4896. U.MD.D.I.displayTaskbar = function (el) {
  4897. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4898. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4899. //任务栏位置变化
  4900. U.selectEl(el).css({ "bottom": "0px" });
  4901. //桌面位置变话
  4902. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4903. }
  4904. }
  4905. //#region 桌面图标拖动逻辑
  4906. /**
  4907. * 桌面排列图标
  4908. *
  4909. * @param {element} 桌面元素
  4910. * @param {object} 上下相距的距离
  4911. * @param {object} 左右相距的距离
  4912. * @return {object} 命名空间
  4913. */
  4914. U.MD.D.iconPostion = function (childs, top, left) {
  4915. var i; //用于循环处理
  4916. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4917. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4918. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4919. for (i = 0; i < childs.length; i++) {
  4920. //如果竖排top超过了范围处理
  4921. if (top + 95 > US.height - 10) {
  4922. //left超过了页面范围处理,则向上重叠打印处理
  4923. if ((left + 180) > US.width) {
  4924. top -= 110;
  4925. left -= 90;
  4926. }
  4927. //没有超过范围,那么left+90添加到下一个竖排打印
  4928. else {
  4929. left += 90;
  4930. top = 15;
  4931. };
  4932. }
  4933. //给图标的位置赋值
  4934. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4935. if (i < childs.length - 1) {
  4936. //页面图标每次向下加95
  4937. top += 95;
  4938. }
  4939. }
  4940. //返回最后调用的图标的位置
  4941. return [top, left];
  4942. }
  4943. /**
  4944. * 桌面排列图标
  4945. *
  4946. * @param {element} 桌面元素
  4947. * @param {object} 上下相距的距离
  4948. * @param {object} 左右相距的距离
  4949. * @return {object} 命名空间
  4950. */
  4951. U.MD.D.iconPostion2 = function (childs, top, left) {
  4952. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4953. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4954. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4955. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4956. for (i = 0; i < childs.length; i++) {
  4957. //如果竖排top超过了范围处理
  4958. if (left + 150 > US.width - 10) {
  4959. //left超过了页面范围处理,则向上重叠打印处理
  4960. if ((top + 180) > US.Height) {
  4961. top -= 150;
  4962. left -= 150;
  4963. }
  4964. //没有超过范围,那么left+90添加到下一个竖排打印
  4965. else {
  4966. top += 150;
  4967. left = ol;
  4968. };
  4969. }
  4970. //给图标的位置赋值
  4971. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4972. if (i < childs.length - 1) {
  4973. //页面图标每次向下加95
  4974. left += 150;
  4975. }
  4976. }
  4977. //返回最后调用的图标的位置
  4978. return [top, left];
  4979. }
  4980. /**
  4981. * 桌面点击事件逻辑
  4982. *
  4983. * @param {element} 桌面元素
  4984. * @param {object} 上下相距的距离
  4985. * @param {object} 左右相距的距离
  4986. * @return {object} 命名空间
  4987. */
  4988. U.MD.D.click = function (el, obj) {
  4989. var _buttonnumber = event.button; //点击的按钮的事件值
  4990. var _userinfo = US.userInfo;
  4991. U.UF.EV.stopBubble(); //阻止向上冒泡
  4992. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4993. if (_buttonnumber < 2) {
  4994. //如果是click事件的处理
  4995. if (event.type == "click") {
  4996. //如果元素在mousemove事件中没有移动则出发click事件
  4997. if (!U.MD.D.I.IsDrag) {
  4998. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4999. U.alert("请先登录您的账号!");
  5000. setTimeout(() => {
  5001. U.MD.U.L.login();
  5002. }, 2000);
  5003. } else {
  5004. //打开应用处理
  5005. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5006. }
  5007. }
  5008. }
  5009. //如果是mouse事件的处理
  5010. else {
  5011. if (US.Config.type == '1') {
  5012. //拖动处理,添加拖动和拖动结束事件
  5013. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5014. }
  5015. }
  5016. U.MD.D.I.IsDrag = false;
  5017. }
  5018. }
  5019. /**
  5020. * 拖动的处理
  5021. *
  5022. */
  5023. U.MD.D.iconMove = function () {
  5024. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5025. U.MD.D.I.IsDrag = true;
  5026. }
  5027. /**
  5028. * 拖动结束后,这里是定位处理,以网状的形式定位
  5029. *
  5030. * @param {element} 拖动的元素
  5031. * @return {object} 命名空间
  5032. */
  5033. U.MD.D.iconUp = function (el) {
  5034. var _top = 15,
  5035. _left = 20,
  5036. _margin,
  5037. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5038. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5039. if (_positioninfo["OT"] > 15) {
  5040. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5041. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5042. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5043. }
  5044. if (_positioninfo["OL"] > 20) {
  5045. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5046. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5047. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5048. }
  5049. //while循环判断么一个重叠的元素
  5050. do {
  5051. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5052. _top = _positioninfo[0] + 95; //得到定位后的top
  5053. _left = _positioninfo[1]; //得到定位后的left
  5054. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5055. }
  5056. /**
  5057. * 判断拖动后图标是否重叠
  5058. *
  5059. * @param {element} 拖动的元素
  5060. * @param {element} 桌面所有的元素
  5061. * @param {array} 拖动元素的位置
  5062. ----------[0] 上 top
  5063. ----------[1] 左 left
  5064. * @return {object} 命名空间
  5065. */
  5066. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5067. //循环所有的图标
  5068. for (var i = 0; i < childs.length; i++) {
  5069. //判断有没有和该图标诶子重叠的元素
  5070. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5071. return childs[i]; //如果有返回
  5072. }
  5073. }
  5074. }
  5075. //#endregion
  5076. //#endregion
  5077. //#region 桌面应用
  5078. /**
  5079. * 打开应用
  5080. *
  5081. * @param {string} 类型
  5082. -----------------Disk 网盘系统
  5083. -----------------PDisk 学习系统网盘
  5084. -----------------Poto 图片
  5085. -----------------Video 视频
  5086. -----------------Music 音乐
  5087. -----------------Word word
  5088. -----------------Excel excel
  5089. -----------------Txt 记事本
  5090. -----------------PB 学习系统
  5091. -----------------Blog 朋友圈系统
  5092. -----------------FTP ftp系统
  5093. -----------------Group 好友群
  5094. -----------------SY 首页系统
  5095. -----------------Set 个人设置
  5096. -----------------XSet 系统设置
  5097. -----------------App 我们所有的app
  5098. -----------------BC c.1473.cn 平台
  5099. -----------------CWeb d.1473.cn 变成平台
  5100. -----------------其他的外联系统 我们统一用iframe打开
  5101. * @param {array} 类型
  5102. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5103. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5104. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5105. 如果第一个参数为其他,则无第二个参数
  5106. * @returns {array}
  5107. */
  5108. window.addEventListener('message', function (e) { // 监听 message 事件
  5109. // alert(e.data.type);
  5110. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5111. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5112. //3是展示全部阶段 2学生 1老师 4专家
  5113. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5114. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5115. //3是展示全部阶段 2学生 1老师 4专家
  5116. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5117. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5118. //3是展示全部阶段 2学生 1老师 4专家
  5119. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5120. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5121. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5122. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5123. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5124. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5125. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5126. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5127. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5128. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5129. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5130. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5131. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5132. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5133. //3是展示全部阶段 2学生 1老师 4专家
  5134. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5135. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5136. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5137. U.MD.D.I.selectUser();
  5138. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5139. var _formel = document.getElementById("study");
  5140. U.UF.F.windowZooming(_formel);
  5141. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5142. var _formel = document.getElementById("studyDetail");
  5143. U.UF.F.windowZooming(_formel);
  5144. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5145. var _formel = document.getElementById("studyDetail");
  5146. U.UF.F.windowZooming(_formel);
  5147. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5148. var _formel = document.getElementById("studentStudy");
  5149. U.UF.F.windowZooming(_formel);
  5150. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5151. // var _formel = document.getElementById("study");
  5152. //如果最大化了,那么就把他缩小
  5153. // if (_formel.ismaximize) {
  5154. // return;
  5155. // }
  5156. // U.UF.F.windowZooming(_formel);
  5157. // U.UF.F.topWindow(_formel);
  5158. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5159. // var _formel = document.getElementById("studyDetail");
  5160. //如果最大化了,那么就把他缩小
  5161. // if (_formel.ismaximize) {
  5162. // return;
  5163. // }
  5164. // U.UF.F.windowZooming(_formel);
  5165. // U.UF.F.topWindow(_formel);
  5166. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5167. // var _formel = document.getElementById("studentStudy");
  5168. // if (_formel.ismaximize) {
  5169. // return;
  5170. // }
  5171. // U.UF.F.windowZooming(_formel);
  5172. // U.UF.F.topWindow(_formel);
  5173. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5174. var _formel = document.getElementById("study");
  5175. // if (_formel.ismaximize) {
  5176. // return;
  5177. // }
  5178. // U.UF.F.windowZooming(_formel);
  5179. U.UF.F.topWindow(_formel);
  5180. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5181. var _formel = document.getElementById("studentIndex");
  5182. U.UF.F.windowZooming(_formel);
  5183. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5184. var _formel = document.getElementById("studyDetailS");
  5185. U.UF.F.windowZooming(_formel);
  5186. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5187. var _formel = document.getElementById("studioIndex");
  5188. U.UF.F.windowZooming(_formel);
  5189. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5190. var _formel = document.getElementById("studyDetailStudio");
  5191. U.UF.F.windowZooming(_formel);
  5192. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5193. var _formel = document.getElementById("studyDetailStudio");
  5194. U.UF.F.windowZooming(_formel);
  5195. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5196. var _formel = document.getElementById("studyDetailNT");
  5197. U.UF.F.windowZooming(_formel);
  5198. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5199. var _formel = document.getElementById("studyDetailS");
  5200. U.UF.F.windowZooming(_formel);
  5201. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5202. var _formel = document.getElementById("studyDetailS");
  5203. U.UF.F.topWindow(_formel);
  5204. } else if (e.data.tools && e.data.tools == "1") {
  5205. // U.MD.D.I.openApplication("whiteboard")
  5206. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5207. } else if (e.data.tools && e.data.tools == "2") {
  5208. U.MD.D.I.openApplication("note")
  5209. } else if (e.data.tools && e.data.tools == "3") {
  5210. // U.MD.D.I.openApplication("mind")
  5211. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5212. } else if (e.data.tools && e.data.tools == "4") {
  5213. U.MD.D.I.openApplication("investigation")
  5214. } else if (e.data.tools && e.data.tools == "6") {
  5215. // U.MD.D.I.openApplication("doc")
  5216. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5217. } else if (e.data.tools && e.data.tools == "7") {
  5218. // U.MD.D.I.openApplication("mindNetwork")
  5219. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5220. } else if (e.data.tools && e.data.tools == "8") {
  5221. U.MD.D.I.openApplication("library")
  5222. } else if (e.data.tools && e.data.tools == "17") {
  5223. U.MD.D.I.openApplication("stuLibrary")
  5224. } else if (e.data.tools && e.data.tools == "18") {
  5225. U.MD.D.I.openApplication("train")
  5226. } else if (e.data.tools && e.data.tools == "21") {
  5227. U.MD.D.I.openApplication("program")
  5228. } else if (e.data.tools && e.data.tools == "22") {
  5229. U.MD.D.I.openApplication("AIprogram2")
  5230. } else if (e.data.tools && e.data.tools == "23") {
  5231. U.MD.D.I.openApplication("Pythonprogram")
  5232. } else if (e.data.tools && e.data.tools == "24") {
  5233. U.MD.D.I.openApplication("AIprogram")
  5234. } else if (e.data.tools && e.data.tools == "25") {
  5235. U.MD.D.I.openApplication("sys")
  5236. } else if (e.data.tools && e.data.tools == "26") {
  5237. // U.MD.D.I.openApplication("courseDesign")
  5238. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5239. } else if (e.data.tools && e.data.tools == "31") {
  5240. U.MD.D.I.openApplication("netWorkPanel")
  5241. } else if (e.data.tools && e.data.tools == "32") {
  5242. U.MD.D.I.openApplication("codeEdit")
  5243. } else if (e.data.tools && e.data.tools == "57") {
  5244. U.MD.D.I.openApplication("CocoPi")
  5245. } else if (e.data.tools && e.data.tools == "63") {
  5246. U.MD.D.I.openApplication("Wood")
  5247. } else if (e.data.tools && e.data.tools == "58") {
  5248. U.MD.D.I.openApplication("car")
  5249. } else if (e.data.tools && e.data.tools == "59") {
  5250. U.MD.D.I.openApplication("lineSearch")
  5251. } else if (e.data.tools && e.data.tools == "60") {
  5252. U.MD.D.I.openApplication("deepLearning")
  5253. } else if (e.data.tools && e.data.tools == "61") {
  5254. U.MD.D.I.openApplication("allHistory")
  5255. } else if (e.data.tools && e.data.tools == "28") {
  5256. U.MD.D.I.openApplication("translation")
  5257. } else if (e.data.tools && e.data.tools == "37") {
  5258. U.MD.D.I.openApplication("mohe")
  5259. } else if (e.data.tools && e.data.tools == "38") {
  5260. U.MD.D.I.openApplication("24game")
  5261. } else if (e.data.tools && e.data.tools == "39") {
  5262. U.MD.D.I.openApplication("GeoGebra")
  5263. } else if (e.data.tools && e.data.tools == "43") {
  5264. U.MD.D.I.openApplication("studentEvaluate")
  5265. } else if (e.data.tools && e.data.tools == "44") {
  5266. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5267. } else if (e.data.tools && e.data.tools == "46") {
  5268. U.MD.D.I.openApplication("project")
  5269. } else if (e.data.tools && e.data.tools == "71") {
  5270. U.MD.D.I.openApplication("aigptCourse")
  5271. } else if (e.data.tools && e.data.tools == "72") {
  5272. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5273. } else if (e.data.tools && e.data.tools == "1s") {
  5274. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5275. } else if (e.data.tools && e.data.tools == "3s") {
  5276. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5277. } else if (e.data.tools && e.data.tools == "6s") {
  5278. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5279. } else if (e.data.tools && e.data.tools == "1studio") {
  5280. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5281. } else if (e.data.tools && e.data.tools == "3studio") {
  5282. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5283. } else if (e.data.tools && e.data.tools == "6studio") {
  5284. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5285. } else if (e.data.tools && e.data.tools == "3y") {
  5286. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5287. } else if (e.data.tools && e.data.tools == "1y") {
  5288. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5289. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5290. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5291. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5292. U.MD.D.I.openApplication("AIAnalyse")
  5293. } else if (e.data.tools && e.data.tools == "1teacher") {
  5294. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5295. } else if (e.data.tools && e.data.tools == "3teacher") {
  5296. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5297. } else if (e.data.tools && e.data.tools == "7teacher") {
  5298. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5299. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5300. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5301. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5302. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5303. } else if (e.data.tools && e.data.tools == "1E") {
  5304. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5305. } else if (e.data.tools && e.data.tools == "3E") {
  5306. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5307. } else if (e.data.tools && e.data.tools == "57y") {
  5308. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5309. } else if (e.data.tools && e.data.tools == "57u") {
  5310. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5311. } else if (e.data.tools && e.data.tools == "57teacher") {
  5312. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5313. } else if (e.data.tools && e.data.tools == "64") {
  5314. U.MD.D.I.openApplication("AIChat")
  5315. } else if (e.data.tools && e.data.tools == "66") {
  5316. U.MD.D.I.openApplication("formulaEdi")
  5317. } else if (e.data.tools && e.data.tools == "67") {
  5318. U.MD.D.I.openApplication("molStr")
  5319. } else if (e.data.tools && e.data.tools == "68") {
  5320. U.MD.D.I.openApplication("timeAxis")
  5321. } else if (e.data.tools && e.data.tools == "openCourse") {
  5322. let _data = {
  5323. typea: e.data.typea || '',
  5324. typeb: e.data.typeb || '',
  5325. typed: e.data.typed || '',
  5326. }
  5327. U.MD.D.I.openInApplication("index", _data)
  5328. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5329. let _data = {
  5330. classid: e.data.classid || '',
  5331. }
  5332. U.MD.D.I.openInApplication("dataClass", _data)
  5333. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5334. let _data = {
  5335. cid: e.data.cid || '',
  5336. gid: e.data.gid || '',
  5337. }
  5338. U.MD.D.I.openInApplication("opencCscl", _data)
  5339. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5340. U.MD.D.I.openApplication("dataBoardTest")
  5341. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5342. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5343. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5344. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5345. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5346. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5347. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5348. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5349. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5350. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5351. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5352. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5353. }else if (e.data.tools && e.data.tools == "loginSz") {
  5354. U.MD.D.I.openInApplication("loginSz")
  5355. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5356. if($('#classroom_observation_board')[0]){
  5357. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5358. }
  5359. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5360. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5361. if($('#classroom_observation_ob_comment')[0]){
  5362. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5363. }
  5364. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5365. }else if (e.data.tools && e.data.tools == "logout"){
  5366. U.MD.U.LO.logoutSystem()
  5367. }else if (e.data.tools && e.data.tools == "getLogin"){
  5368. let _iframe = $('#UI_Login')[0];
  5369. if (_iframe) {
  5370. var userInfo = US.userInfo;
  5371. var type = 2
  5372. if(userInfo && userInfo.userid){
  5373. type = 1
  5374. }
  5375. _contentWindow = _iframe.contentWindow;
  5376. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5377. }
  5378. }
  5379. });
  5380. U.MD.D.I.selectUser = function () {
  5381. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5382. if (res.value[0].length > 0) {
  5383. US.userInfo = res.value[0][0];
  5384. $(".userName")[0].innerHTML = US.userInfo.username;
  5385. }
  5386. }, [], { "type": "GET", "withCredentials": true });
  5387. }
  5388. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5389. var _userinfo = US.userInfo, //登录用户信息
  5390. _userid = US.userInfo.userid, //登录用户id
  5391. _oid = _userinfo.organizeid,
  5392. _type = US.userInfo.type,
  5393. _org = US.userInfo.org,
  5394. _role = US.userInfo.role,
  5395. _classId = US.userInfo.classid;
  5396. if (_type == 4) {
  5397. tType = 4
  5398. }
  5399. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5400. if(opArray.includes(str)){
  5401. let _str = str
  5402. if(str == 'appStore'){
  5403. _str = "cocoFlow"
  5404. }else if(str == "futureClass"){
  5405. _str = "cocoNote"
  5406. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5407. _str = "IntelligentForm"
  5408. }else if(str == "testStudent" || str == "testStudentSies"){
  5409. _str = "TeacherCenter"
  5410. }
  5411. try {
  5412. if (data) {
  5413. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5414. }else {
  5415. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5416. }
  5417. } catch (error) {
  5418. console.log(error);
  5419. }
  5420. }
  5421. switch (str) {
  5422. case "studyDetailNT": //无终端模式
  5423. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5424. setTimeout(() => {
  5425. U.MD.U.L.login();
  5426. }, 2000);
  5427. } else {
  5428. _formdiv = new U.UF.UI.form(
  5429. "课程详情",
  5430. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5431. "id": "studyDetailNT",
  5432. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //创建窗体
  5437. _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); } }
  5438. break;
  5439. }
  5440. case "studyDetail":
  5441. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5442. setTimeout(() => {
  5443. U.MD.U.L.login();
  5444. }, 2000);
  5445. } else {
  5446. _formdiv = new U.UF.UI.form(
  5447. "课程详情",
  5448. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5449. "id": "studyDetail",
  5450. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. _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); } }
  5456. break;
  5457. }
  5458. case "studyDetailTrain":
  5459. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5460. setTimeout(() => {
  5461. U.MD.U.L.login();
  5462. }, 2000);
  5463. } else {
  5464. _formdiv = new U.UF.UI.form(
  5465. "培训详情",
  5466. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5467. "id": "studyDetailTrain",
  5468. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5474. break;
  5475. }
  5476. case "studyDetailS":
  5477. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5478. setTimeout(() => {
  5479. U.MD.U.L.login();
  5480. }, 2000);
  5481. } else {
  5482. _formdiv = new U.UF.UI.form(
  5483. "项目详情",
  5484. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5485. "id": "studyDetailS",
  5486. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. _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); } }
  5492. break;
  5493. }
  5494. case "studyDetailStudio":
  5495. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5496. setTimeout(() => {
  5497. U.MD.U.L.login();
  5498. }, 2000);
  5499. } else {
  5500. _formdiv = new U.UF.UI.form(
  5501. "工作详情",
  5502. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5503. "id": "studyDetailStudio",
  5504. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //创建窗体
  5509. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5510. break;
  5511. }
  5512. case "studyDetailS5":
  5513. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5514. setTimeout(() => {
  5515. U.MD.U.L.login();
  5516. }, 2000);
  5517. } else {
  5518. _formdiv = new U.UF.UI.form(
  5519. "项目详情",
  5520. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5521. "id": "studyDetailS",
  5522. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5523. "onresize": function () { }
  5524. }, {
  5525. closecallback: function () { }
  5526. }, { "style": { "height": "36px" } }).form; //创建窗体
  5527. _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); } }
  5528. break;
  5529. }
  5530. case "studyDetailGM":
  5531. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5532. setTimeout(() => {
  5533. U.MD.U.L.login();
  5534. }, 2000);
  5535. } else {
  5536. _formdiv = new U.UF.UI.form(
  5537. "课程详情",
  5538. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5539. "id": "studyDetail",
  5540. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5546. break;
  5547. }
  5548. case "hanUrl":
  5549. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5550. setTimeout(() => {
  5551. U.MD.U.L.login();
  5552. }, 2000);
  5553. } else {
  5554. _formdiv = new U.UF.UI.form(
  5555. "汉字宫",
  5556. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  5557. "id": "hanUrl",
  5558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _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); } }
  5564. break;
  5565. }
  5566. case "index":
  5567. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5568. setTimeout(() => {
  5569. U.MD.U.L.login();
  5570. }, 2000);
  5571. } else {
  5572. _formdiv = new U.UF.UI.form(
  5573. "课程中心",
  5574. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  5575. "id": "study",
  5576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5577. "onresize": function () { }
  5578. }, {
  5579. closecallback: function () { }
  5580. }, { "style": { "height": "36px" } }).form; //创建窗体
  5581. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5582. break;
  5583. }
  5584. case "dataClass":
  5585. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5586. setTimeout(() => {
  5587. U.MD.U.L.login();
  5588. }, 2000);
  5589. } else {
  5590. _formdiv = new U.UF.UI.form(
  5591. "数据报告",
  5592. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5593. "id": "dataClass",
  5594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. }
  5602. case "opencCscl":
  5603. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5604. setTimeout(() => {
  5605. U.MD.U.L.login();
  5606. }, 2000);
  5607. } else {
  5608. _formdiv = new U.UF.UI.form(
  5609. "协同建构",
  5610. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5611. "id": "futureClass",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _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); } }
  5618. break;
  5619. }
  5620. case "openCourseUpdate":
  5621. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5622. setTimeout(() => {
  5623. U.MD.U.L.login();
  5624. }, 2000);
  5625. } else {
  5626. _formdiv = new U.UF.UI.form(
  5627. "课程管理",
  5628. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5629. "id": "openCourseUpdate",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. break;
  5636. }
  5637. case "openNewCourseUpdate":
  5638. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5639. setTimeout(() => {
  5640. U.MD.U.L.login();
  5641. }, 2000);
  5642. } else {
  5643. _formdiv = new U.UF.UI.form(
  5644. "课程管理",
  5645. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5646. "id": "openCourseUpdate",
  5647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. break;
  5653. }
  5654. case "openCourseEUpdate":
  5655. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5656. setTimeout(() => {
  5657. U.MD.U.L.login();
  5658. }, 2000);
  5659. } else {
  5660. _formdiv = new U.UF.UI.form(
  5661. "课程管理",
  5662. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5663. "id": "openCourseUpdate",
  5664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. break;
  5670. }
  5671. case "openCourseAiUpdate":
  5672. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5673. setTimeout(() => {
  5674. U.MD.U.L.login();
  5675. }, 2000);
  5676. } else {
  5677. _formdiv = new U.UF.UI.form(
  5678. "课程管理",
  5679. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5680. "id": "openCourseUpdate",
  5681. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5682. "onresize": function () { }
  5683. }, {
  5684. closecallback: function () { }
  5685. }, { "style": { "height": "36px" } }).form; //创建窗体
  5686. break;
  5687. }
  5688. case "openCourseAiUpdate2":
  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;", "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 }), {
  5697. "id": "openCourseUpdate",
  5698. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. break;
  5704. }
  5705. case "openCourseNewUpdate":
  5706. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5707. setTimeout(() => {
  5708. U.MD.U.L.login();
  5709. }, 2000);
  5710. } else {
  5711. _formdiv = new U.UF.UI.form(
  5712. "课程管理",
  5713. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5714. "id": "openCourseUpdate",
  5715. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5716. "onresize": function () { }
  5717. }, {
  5718. closecallback: function () { }
  5719. }, { "style": { "height": "36px" } }).form; //创建窗体
  5720. break;
  5721. }
  5722. case "inviteLoginSz":
  5723. _formdiv = new U.UF.UI.form(
  5724. "随机码登录",
  5725. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5726. "id": "loginSz",
  5727. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5728. "onresize": function () { }
  5729. }, {
  5730. closecallback: function () { }
  5731. }, { "style": { "height": "36px" } }).form; //创建窗体
  5732. break;
  5733. case "loginSz":
  5734. _formdiv = new U.UF.UI.form(
  5735. "教师登录",
  5736. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5737. "id": "loginSz",
  5738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. break;
  5744. case "teacher":
  5745. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5746. setTimeout(() => {
  5747. U.MD.U.L.login();
  5748. }, 2000);
  5749. } else {
  5750. _formdiv = new U.UF.UI.form(
  5751. "教师管理",
  5752. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5753. "id": "teacher",
  5754. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5755. "onresize": function () { }
  5756. }, {
  5757. closecallback: function () { }
  5758. }, { "style": { "height": "36px" } }).form; //创建窗体
  5759. break;
  5760. }
  5761. case "dataBoardSZArea":
  5762. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5763. setTimeout(() => {
  5764. U.MD.U.L.login();
  5765. }, 2000);
  5766. } else {
  5767. _formdiv = new U.UF.UI.form(
  5768. "综合数据看板",
  5769. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5770. "id": "dataBoardSZArea",
  5771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. break;
  5777. }
  5778. case "dataBoardSZCity":
  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;", "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 }), {
  5787. "id": "dataBoardSZCity",
  5788. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. break;
  5794. }
  5795. case "classroom_observation_board":
  5796. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5797. setTimeout(() => {
  5798. U.MD.U.L.login();
  5799. }, 2000);
  5800. } else {
  5801. _formdiv = new U.UF.UI.form(
  5802. "课堂观察",
  5803. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5804. "id": "classroom_observation_board",
  5805. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5806. "onresize": function () { }
  5807. }, {
  5808. closecallback: function () { }
  5809. }, { "style": { "height": "36px" } }).form; //创建窗体
  5810. break;
  5811. }
  5812. case "classroom_observation_ob_comment":
  5813. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5814. setTimeout(() => {
  5815. U.MD.U.L.login();
  5816. }, 2000);
  5817. } else {
  5818. _formdiv = new U.UF.UI.form(
  5819. "课堂审核",
  5820. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5821. "id": "classroom_observation_ob_comment",
  5822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. break;
  5828. }
  5829. case "gptConfig":
  5830. _formdiv = new U.UF.UI.form(
  5831. data.name ? data.name : "应用中心",
  5832. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5833. "id": "gptConfig" + data.id,
  5834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5835. "onresize": function () { }
  5836. }, {
  5837. closecallback: function () { }
  5838. }, { "style": { "height": "36px" } }).form; //创建窗体
  5839. break;
  5840. case "testDetail":
  5841. _formdiv = new U.UF.UI.form(
  5842. "表单填写",
  5843. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5844. "id": "testDetail" + data,
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. break;
  5851. }
  5852. }
  5853. U.MD.D.I.openApplication = function (str, obj, info) {
  5854. obj = obj || {};
  5855. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5856. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5857. _userinfo = US.userInfo, //登录用户信息
  5858. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5859. _oid = obj.organizeid || _userinfo.organizeid,
  5860. _type = US.userInfo.type,
  5861. _org = obj.org || US.userInfo.org,
  5862. _role = US.userInfo.role,
  5863. _classId = US.userInfo.classid,
  5864. _TscreenType = 1
  5865. _screenType = 2,
  5866. _SscreenType = 3;
  5867. let iframeBool = true
  5868. if(U.UF.UI.form.allForm[str]){
  5869. iframeBool = false
  5870. }
  5871. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5872. return;
  5873. }
  5874. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5875. if(opArray.includes(str)){
  5876. let _str = str
  5877. if(str == 'appStore'){
  5878. _str = "cocoFlow"
  5879. }else if(str == "futureClass"){
  5880. _str = "cocoNote"
  5881. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5882. _str = "IntelligentForm"
  5883. }else if(str == "testStudent" || str == "testStudentSies"){
  5884. _str = "TeacherCenter"
  5885. }
  5886. try {
  5887. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5888. } catch (error) {
  5889. console.log(error);
  5890. }
  5891. }
  5892. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5893. switch (str) {
  5894. case "studnetProject": //好友打开
  5895. _formdiv = new U.UF.UI.form(
  5896. "我的项目",
  5897. $$("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 }), {
  5898. "id": "studnetProject",
  5899. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5900. "onresize": function () { }
  5901. }, {
  5902. closecallback: function () { }
  5903. }, { "style": { "height": "36px" } }).form; //创建窗体
  5904. _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); } }
  5905. break;
  5906. case "studentEvaluate": //好友打开
  5907. _formdiv = new U.UF.UI.form(
  5908. "我的评价",
  5909. $$("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 }), {
  5910. "id": "studentEvaluate",
  5911. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. _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); } }
  5917. break;
  5918. case "my":
  5919. _formdiv = new U.UF.UI.form(
  5920. "我的资料",
  5921. $$("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 }), {
  5922. "id": "my",
  5923. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5924. "onresize": function () { }
  5925. }, {
  5926. closecallback: function () { }
  5927. }, { "style": { "height": "36px" } }).form; //创建窗体
  5928. _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); } }
  5929. break;
  5930. case "program":
  5931. _formdiv = new U.UF.UI.form(
  5932. "编程平台",
  5933. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5934. "id": "program",
  5935. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5936. "onresize": function () { }
  5937. }, {
  5938. closecallback: function () { }
  5939. }, { "style": { "height": "36px" } }).form; //创建窗体
  5940. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5941. break;
  5942. case "library":
  5943. _formdiv = new U.UF.UI.form(
  5944. "素材库",
  5945. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5946. "id": "library",
  5947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5948. "onresize": function () { }
  5949. }, {
  5950. closecallback: function () { }
  5951. }, { "style": { "height": "36px" } }).form; //创建窗体
  5952. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5953. break;
  5954. case "whiteboard":
  5955. _formdiv = new U.UF.UI.form(
  5956. "电子白板",
  5957. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5958. "id": "whiteboard",
  5959. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5960. "onresize": function () { }
  5961. }, {
  5962. closecallback: function () { }
  5963. }, { "style": { "height": "36px" } }).form; //创建窗体
  5964. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5965. break;
  5966. case "investigation":
  5967. _formdiv = new U.UF.UI.form(
  5968. "问卷调查",
  5969. $$("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 }), {
  5970. "id": "investigation",
  5971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5972. "onresize": function () { }
  5973. }, {
  5974. closecallback: function () { }
  5975. }, { "style": { "height": "36px" } }).form; //创建窗体
  5976. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5977. break;
  5978. case "note":
  5979. _formdiv = new U.UF.UI.form(
  5980. "便签分类",
  5981. $$("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 }), {
  5982. "id": "note",
  5983. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5984. "onresize": function () { }
  5985. }, {
  5986. closecallback: function () { }
  5987. }, { "style": { "height": "36px" } }).form; //创建窗体
  5988. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5989. break;
  5990. // case "score":
  5991. // _formdiv = new U.UF.UI.form(
  5992. // "量规评分",
  5993. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5994. // "id": "score",
  5995. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5996. // "onresize": function() {}
  5997. // }, {
  5998. // closecallback: function() {}
  5999. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6000. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6001. // break;
  6002. case "mind":
  6003. _formdiv = new U.UF.UI.form(
  6004. "思维导图",
  6005. $$("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"
  6006. "id": "mind",
  6007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6013. break;
  6014. case "doc":
  6015. // U.MD.D.I.isRoom();
  6016. _formdiv = new U.UF.UI.form(
  6017. "协同文档",
  6018. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6019. "id": "doc",
  6020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6026. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6027. // })
  6028. _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); } }
  6029. break;
  6030. case "studentStudy":
  6031. _formdiv = new U.UF.UI.form(
  6032. "课程中心",
  6033. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6034. "id": "studentStudy",
  6035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "train": //好友打开
  6043. _formdiv = new U.UF.UI.form(
  6044. "训练平台",
  6045. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6046. "id": "train",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _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); } }
  6053. break;
  6054. case "mindNetwork": //好友打开
  6055. _formdiv = new U.UF.UI.form(
  6056. "思维网格",
  6057. $$("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 }), {
  6058. "id": "mindNetwork",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. case "studentClassRoom": //好友打开
  6067. _formdiv = new U.UF.UI.form(
  6068. "实时课堂",
  6069. $$("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 }), {
  6070. "id": "studentClassRoom",
  6071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _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); } }
  6077. setTimeout(() => {
  6078. U.UF.F.windowZooming(_formdiv)
  6079. }, 0);
  6080. break;
  6081. }
  6082. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6083. switch (str) {
  6084. case "studnetProject": //好友打开
  6085. _formdiv = new U.UF.UI.form(
  6086. "我的项目",
  6087. $$("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 }), {
  6088. "id": "studnetProject",
  6089. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _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); } }
  6095. break;
  6096. case "studentEvaluate": //好友打开
  6097. _formdiv = new U.UF.UI.form(
  6098. "我的评价",
  6099. $$("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 }), {
  6100. "id": "studentEvaluate",
  6101. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _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); } }
  6107. break;
  6108. case "my":
  6109. _formdiv = new U.UF.UI.form(
  6110. "我的资料",
  6111. $$("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 }), {
  6112. "id": "my",
  6113. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _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); } }
  6119. break;
  6120. case "program":
  6121. _formdiv = new U.UF.UI.form(
  6122. "编程平台",
  6123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6124. "id": "program",
  6125. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. _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); } }
  6131. break;
  6132. case "library":
  6133. _formdiv = new U.UF.UI.form(
  6134. "素材库",
  6135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6136. "id": "library",
  6137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. case "whiteboard":
  6145. _formdiv = new U.UF.UI.form(
  6146. "电子白板",
  6147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6148. "id": "whiteboard",
  6149. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _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); } }
  6155. break;
  6156. case "investigation":
  6157. _formdiv = new U.UF.UI.form(
  6158. "问卷调查",
  6159. $$("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 }), {
  6160. "id": "investigation",
  6161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. _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); } }
  6167. break;
  6168. case "note":
  6169. _formdiv = new U.UF.UI.form(
  6170. "便签分类",
  6171. $$("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 }), {
  6172. "id": "note",
  6173. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. // case "score":
  6181. // _formdiv = new U.UF.UI.form(
  6182. // "量规评分",
  6183. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6184. // "id": "score",
  6185. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6186. // "onresize": function() {}
  6187. // }, {
  6188. // closecallback: function() {}
  6189. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. // _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); } }
  6191. // break;
  6192. case "mind":
  6193. _formdiv = new U.UF.UI.form(
  6194. "思维导图",
  6195. $$("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"
  6196. "id": "mind",
  6197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //创建窗体
  6202. _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); } }
  6203. break;
  6204. case "doc":
  6205. // U.MD.D.I.isRoom();
  6206. _formdiv = new U.UF.UI.form(
  6207. "协同文档",
  6208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6209. "id": "doc",
  6210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6211. "onresize": function () { }
  6212. }, {
  6213. closecallback: function () { }
  6214. }, { "style": { "height": "36px" } }).form; //创建窗体
  6215. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6216. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6217. })
  6218. _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); } }
  6219. break;
  6220. case "train": //好友打开
  6221. _formdiv = new U.UF.UI.form(
  6222. "训练平台",
  6223. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6224. "id": "train",
  6225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6231. break;
  6232. case "studentStudy":
  6233. _formdiv = new U.UF.UI.form(
  6234. "课程中心",
  6235. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6236. "id": "studentStudy",
  6237. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _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); } }
  6243. break;
  6244. case "mindNetwork": //好友打开
  6245. _formdiv = new U.UF.UI.form(
  6246. "思维网格",
  6247. $$("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 }), {
  6248. "id": "mindNetwork",
  6249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6250. "onresize": function () { }
  6251. }, {
  6252. closecallback: function () { }
  6253. }, { "style": { "height": "36px" } }).form; //创建窗体
  6254. _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); } }
  6255. break;
  6256. case "studentClassRoom": //好友打开
  6257. _formdiv = new U.UF.UI.form(
  6258. "实时课堂",
  6259. $$("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 }), {
  6260. "id": "studentClassRoom",
  6261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6262. "onresize": function () { }
  6263. }, {
  6264. closecallback: function () { }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. setTimeout(() => {
  6268. U.UF.F.windowZooming(_formdiv)
  6269. }, 0);
  6270. break;
  6271. }
  6272. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6273. //选择应用处理
  6274. switch (str) {
  6275. case "project": //好友打开
  6276. _formdiv = new U.UF.UI.form(
  6277. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6278. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6279. "id": "project",
  6280. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6286. break;
  6287. case "student":
  6288. _formdiv = new U.UF.UI.form(
  6289. "学生管理",
  6290. $$("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 }), {
  6291. "id": "student",
  6292. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. _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); } }
  6298. break;
  6299. case "evaluate":
  6300. _formdiv = new U.UF.UI.form(
  6301. "学生评价",
  6302. $$("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 }), {
  6303. "id": "evaluate",
  6304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6305. "onresize": function () { }
  6306. }, {
  6307. closecallback: function () { }
  6308. }, { "style": { "height": "36px" } }).form; //创建窗体
  6309. _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); } }
  6310. break;
  6311. case "sys":
  6312. _formdiv = new U.UF.UI.form(
  6313. "目标管理",
  6314. $$("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 }), {
  6315. "id": "sys",
  6316. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _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); } }
  6322. break;
  6323. case "courseDesign":
  6324. _formdiv = new U.UF.UI.form(
  6325. "项目设计",
  6326. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6327. "id": "courseDesign",
  6328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. case "program":
  6336. _formdiv = new U.UF.UI.form(
  6337. "编程平台",
  6338. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6339. "id": "program",
  6340. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _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); } }
  6346. break;
  6347. case "class":
  6348. _formdiv = new U.UF.UI.form(
  6349. "班级管理",
  6350. $$("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 }), {
  6351. "id": "class",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _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); } }
  6358. break;
  6359. case "Grade":
  6360. _formdiv = new U.UF.UI.form(
  6361. "年级管理",
  6362. $$("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 }), {
  6363. "id": "Grade",
  6364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _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); } }
  6370. break;
  6371. case "teacherOffice":
  6372. _formdiv = new U.UF.UI.form(
  6373. "教研室",
  6374. $$("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 }), {
  6375. "id": "teacherOffice",
  6376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6377. "onresize": function () { }
  6378. }, {
  6379. closecallback: function () { }
  6380. }, { "style": { "height": "36px" } }).form; //创建窗体
  6381. _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); } }
  6382. break;
  6383. case "my":
  6384. _formdiv = new U.UF.UI.form(
  6385. "我的资料",
  6386. $$("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 }), {
  6387. "id": "my",
  6388. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _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); } }
  6394. break;
  6395. case "notice":
  6396. _formdiv = new U.UF.UI.form(
  6397. "通知公告",
  6398. $$("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 }), {
  6399. "id": "notice",
  6400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. _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); } }
  6406. break;
  6407. case "library":
  6408. _formdiv = new U.UF.UI.form(
  6409. "素材库",
  6410. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6411. "id": "library",
  6412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _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); } }
  6418. break;
  6419. case "whiteboard":
  6420. _formdiv = new U.UF.UI.form(
  6421. "电子白板",
  6422. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6423. "id": "whiteboard",
  6424. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //创建窗体
  6429. _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); } }
  6430. break;
  6431. case "investigation":
  6432. _formdiv = new U.UF.UI.form(
  6433. "问卷调查",
  6434. $$("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 }), {
  6435. "id": "investigation",
  6436. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6437. "onresize": function () { }
  6438. }, {
  6439. closecallback: function () { }
  6440. }, { "style": { "height": "36px" } }).form; //创建窗体
  6441. _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); } }
  6442. break;
  6443. case "note":
  6444. _formdiv = new U.UF.UI.form(
  6445. "便签分类",
  6446. $$("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 }), {
  6447. "id": "note",
  6448. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6449. "onresize": function () { }
  6450. }, {
  6451. closecallback: function () { }
  6452. }, { "style": { "height": "36px" } }).form; //创建窗体
  6453. _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); } }
  6454. break;
  6455. // case "score":
  6456. // _formdiv = new U.UF.UI.form(
  6457. // "量规评分",
  6458. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6459. // "id": "score",
  6460. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6461. // "onresize": function() {}
  6462. // }, {
  6463. // closecallback: function() {}
  6464. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6465. // _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); } }
  6466. // break;
  6467. case "mind":
  6468. _formdiv = new U.UF.UI.form(
  6469. "思维导图",
  6470. $$("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"
  6471. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6478. break;
  6479. case "doc":
  6480. // U.MD.D.I.isRoom();
  6481. _formdiv = new U.UF.UI.form(
  6482. "协同文档",
  6483. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6484. "id": "doc",
  6485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6491. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6492. })
  6493. _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); } }
  6494. break;
  6495. case "study":
  6496. _formdiv = new U.UF.UI.form(
  6497. "课程中心",
  6498. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6499. "id": "study",
  6500. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () { }
  6504. }, { "style": { "height": "36px" } }).form; //创建窗体
  6505. _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); } }
  6506. break;
  6507. case "mindNetwork": //好友打开
  6508. _formdiv = new U.UF.UI.form(
  6509. "思维网格",
  6510. $$("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 }), {
  6511. "id": "mindNetwork",
  6512. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6513. "onresize": function () { }
  6514. }, {
  6515. closecallback: function () { }
  6516. }, { "style": { "height": "36px" } }).form; //创建窗体
  6517. _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); } }
  6518. break;
  6519. case "train": //好友打开
  6520. _formdiv = new U.UF.UI.form(
  6521. "训练平台",
  6522. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6523. "id": "mindNetwork",
  6524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6525. "onresize": function () { }
  6526. }, {
  6527. closecallback: function () { }
  6528. }, { "style": { "height": "36px" } }).form; //创建窗体
  6529. _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); } }
  6530. break;
  6531. case "teacherClassRoom": //好友打开
  6532. _formdiv = new U.UF.UI.form(
  6533. "实时课堂",
  6534. $$("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 }), {
  6535. "id": "teacherClassRoom",
  6536. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6537. "onresize": function () { }
  6538. }, {
  6539. closecallback: function () { }
  6540. }, { "style": { "height": "36px" } }).form; //创建窗体
  6541. _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); } }
  6542. setTimeout(() => {
  6543. U.UF.F.windowZooming(_formdiv)
  6544. }, 0);
  6545. break;
  6546. }
  6547. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6548. switch (str) {
  6549. case "project": //好友打开
  6550. _formdiv = new U.UF.UI.form(
  6551. "课程管理",
  6552. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6553. "id": "project",
  6554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6560. break;
  6561. case "evaluate":
  6562. _formdiv = new U.UF.UI.form(
  6563. "学生评价",
  6564. $$("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 }), {
  6565. "id": "evaluate",
  6566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _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); } }
  6572. break;
  6573. case "notice":
  6574. _formdiv = new U.UF.UI.form(
  6575. "通知公告",
  6576. $$("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 }), {
  6577. "id": "notice",
  6578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _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); } }
  6584. break;
  6585. case "stuLibrary":
  6586. _formdiv = new U.UF.UI.form(
  6587. "学习资料",
  6588. $$("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 }), {
  6589. "id": "stuLibrary",
  6590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _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); } }
  6596. break;
  6597. case "program":
  6598. _formdiv = new U.UF.UI.form(
  6599. "编程平台",
  6600. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6601. "id": "program",
  6602. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () { }
  6606. }, { "style": { "height": "36px" } }).form; //创建窗体
  6607. _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); } }
  6608. break;
  6609. case "whiteboard":
  6610. _formdiv = new U.UF.UI.form(
  6611. "电子白板",
  6612. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6613. "id": "whiteboard",
  6614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6615. "onresize": function () { }
  6616. }, {
  6617. closecallback: function () { }
  6618. }, { "style": { "height": "36px" } }).form; //创建窗体
  6619. _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); } }
  6620. break;
  6621. case "investigation":
  6622. _formdiv = new U.UF.UI.form(
  6623. "问卷调查",
  6624. $$("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 }), {
  6625. "id": "investigation",
  6626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6627. "onresize": function () { }
  6628. }, {
  6629. closecallback: function () { }
  6630. }, { "style": { "height": "36px" } }).form; //创建窗体
  6631. _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); } }
  6632. break;
  6633. case "mind":
  6634. _formdiv = new U.UF.UI.form(
  6635. "思维导图",
  6636. $$("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"
  6637. "id": "mind",
  6638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6639. "onresize": function () { }
  6640. }, {
  6641. closecallback: function () { }
  6642. }, { "style": { "height": "36px" } }).form; //创建窗体
  6643. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6644. break;
  6645. case "doc":
  6646. // U.MD.D.I.isRoom();
  6647. _formdiv = new U.UF.UI.form(
  6648. "协同文档",
  6649. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6650. "id": "doc",
  6651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, { "style": { "height": "36px" } }).form; //创建窗体
  6656. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6657. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6658. })
  6659. _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); } }
  6660. break;
  6661. case "study":
  6662. _formdiv = new U.UF.UI.form(
  6663. "课程中心",
  6664. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  6665. "id": "study",
  6666. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //创建窗体
  6671. _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); } }
  6672. break;
  6673. case "mindNetwork": //好友打开
  6674. _formdiv = new U.UF.UI.form(
  6675. "思维网格",
  6676. $$("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 }), {
  6677. "id": "mindNetwork",
  6678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //创建窗体
  6683. _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); } }
  6684. break;
  6685. case "train": //好友打开
  6686. _formdiv = new U.UF.UI.form(
  6687. "训练平台",
  6688. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6689. "id": "train",
  6690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //创建窗体
  6695. _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); } }
  6696. break;
  6697. case "sys":
  6698. _formdiv = new U.UF.UI.form(
  6699. "目标管理",
  6700. $$("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 }), {
  6701. "id": "sys",
  6702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _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); } }
  6708. break;
  6709. case "courseDesign":
  6710. _formdiv = new U.UF.UI.form(
  6711. "项目设计",
  6712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6713. "id": "courseDesign",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _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); } }
  6720. break;
  6721. }
  6722. } else if (!_type) {
  6723. switch (str) {
  6724. case "my":
  6725. _formdiv = new U.UF.UI.form(
  6726. "我的资料",
  6727. $$("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 }), {
  6728. "id": "my",
  6729. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6730. "onresize": function () { }
  6731. }, {
  6732. closecallback: function () { }
  6733. }, { "style": { "height": "36px" } }).form; //创建窗体
  6734. _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); } }
  6735. break;
  6736. }
  6737. }
  6738. switch (str) {
  6739. // AIprogram2 AI体验 aihub.cocorobo.cn
  6740. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6741. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6742. case "formulaEdi": //公式编辑
  6743. _formdiv = new U.UF.UI.form(
  6744. "公式编辑",
  6745. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6746. "id": "formulaEdi",
  6747. "style": { "width": "70%", "height": "90%", "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/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6753. break;
  6754. case "molStr": //分子结构
  6755. _formdiv = new U.UF.UI.form(
  6756. "分子结构",
  6757. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6758. "id": "molStr",
  6759. "style": { "width": "70%", "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/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6765. break;
  6766. case "timeAxis": //时间轴
  6767. _formdiv = new U.UF.UI.form(
  6768. "时间轴",
  6769. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6770. "id": "timeAxis",
  6771. "style": { "width": "70%", "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/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6777. break;
  6778. case "AIprogram2": //AI体验
  6779. _formdiv = new U.UF.UI.form(
  6780. "AI体验",
  6781. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6782. "id": "AIprogram2",
  6783. "style": { "width": "70%", "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/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6789. break;
  6790. case "Pythonprogram": //python编程
  6791. _formdiv = new U.UF.UI.form(
  6792. "Python编程",
  6793. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6794. "id": "Pythonprogram",
  6795. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _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); } }
  6801. break;
  6802. case "AIprogram": //ai编程
  6803. _formdiv = new U.UF.UI.form(
  6804. "AI编程平台",
  6805. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6806. "id": "AIprogram",
  6807. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //创建窗体
  6812. _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); } }
  6813. break;
  6814. case "CocoPi": //CocoPi
  6815. _formdiv = new U.UF.UI.form(
  6816. "CocoPi",
  6817. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  6818. "id": "CocoPi",
  6819. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //创建窗体
  6824. _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); } }
  6825. break;
  6826. case "Wood": //Wood
  6827. _formdiv = new U.UF.UI.form(
  6828. "海龟编程",
  6829. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  6830. "id": "Wood",
  6831. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //创建窗体
  6836. _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); } }
  6837. break;
  6838. case "car": //模拟驾驶
  6839. _formdiv = new U.UF.UI.form(
  6840. "模拟驾驶",
  6841. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  6842. "id": "car",
  6843. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //创建窗体
  6848. _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); } }
  6849. break;
  6850. case "lineSearch": //路径搜索
  6851. _formdiv = new U.UF.UI.form(
  6852. "路径搜索",
  6853. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  6854. "id": "lineSearch",
  6855. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6856. "onresize": function () { }
  6857. }, {
  6858. closecallback: function () { }
  6859. }, { "style": { "height": "36px" } }).form; //创建窗体
  6860. _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); } }
  6861. break;
  6862. case "deepLearning": //深度学习
  6863. _formdiv = new U.UF.UI.form(
  6864. "深度学习",
  6865. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  6866. "id": "deepLearning",
  6867. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6868. "onresize": function () { }
  6869. }, {
  6870. closecallback: function () { }
  6871. }, { "style": { "height": "36px" } }).form; //创建窗体
  6872. _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); } }
  6873. break;
  6874. case "allHistory": //深度学习
  6875. _formdiv = new U.UF.UI.form(
  6876. "全历史",
  6877. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  6878. "id": "allHistory",
  6879. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, { "style": { "height": "36px" } }).form; //创建窗体
  6884. _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); } }
  6885. break;
  6886. case "chatPDF": //ai编程
  6887. _formdiv = new U.UF.UI.form(
  6888. "chatPDF",
  6889. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6890. "id": "chatPDF",
  6891. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, { "style": { "height": "36px" } }).form; //创建窗体
  6896. _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); } }
  6897. break;
  6898. case "resources": //国家教育
  6899. _formdiv = new U.UF.UI.form(
  6900. "国家教育",
  6901. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6902. "id": "resources",
  6903. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //创建窗体
  6908. _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); } }
  6909. break;
  6910. case "codeEdit": //源码编辑
  6911. _formdiv = new U.UF.UI.form(
  6912. "源码编辑",
  6913. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6914. "id": "codeEdit",
  6915. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //创建窗体
  6920. _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); } }
  6921. break; //
  6922. case "MindMap": //MindMap
  6923. _formdiv = new U.UF.UI.form(
  6924. "MindMap",
  6925. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6926. "id": "MindMap",
  6927. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6928. "onresize": function () { }
  6929. }, {
  6930. closecallback: function () { }
  6931. }, { "style": { "height": "36px" } }).form; //创建窗体
  6932. _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); } }
  6933. break;
  6934. case "netWorkPanel": //netWorkPanel
  6935. _formdiv = new U.UF.UI.form(
  6936. "netWorkPanel",
  6937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6938. "id": "netWorkPanel",
  6939. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6940. "onresize": function () { }
  6941. }, {
  6942. closecallback: function () { }
  6943. }, { "style": { "height": "36px" } }).form; //创建窗体
  6944. _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); } }
  6945. break;
  6946. case "GeoGebra": //GeoGebra
  6947. _formdiv = new U.UF.UI.form(
  6948. "GeoGebra",
  6949. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  6950. "id": "GeoGebra",
  6951. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6952. "onresize": function () { }
  6953. }, {
  6954. closecallback: function () { }
  6955. }, { "style": { "height": "36px" } }).form; //创建窗体
  6956. _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); } }
  6957. break;
  6958. case "translation": //翻译
  6959. _formdiv = new U.UF.UI.form(
  6960. "翻译",
  6961. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6962. "id": "translation",
  6963. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6964. "onresize": function () { }
  6965. }, {
  6966. closecallback: function () { }
  6967. }, { "style": { "height": "36px" } }).form; //创建窗体
  6968. _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); } }
  6969. break;
  6970. case "mohe": //魔盒
  6971. _formdiv = new U.UF.UI.form(
  6972. "魔盒识字",
  6973. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6974. "id": "mohe",
  6975. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6976. "onresize": function () { }
  6977. }, {
  6978. closecallback: function () { }
  6979. }, { "style": { "height": "36px" } }).form; //创建窗体
  6980. _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); } }
  6981. break;
  6982. case "24game": //24点
  6983. _formdiv = new U.UF.UI.form(
  6984. "24点",
  6985. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6986. "id": "24game",
  6987. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6988. "onresize": function () { }
  6989. }, {
  6990. closecallback: function () { }
  6991. }, { "style": { "height": "36px" } }).form; //创建窗体
  6992. _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); } }
  6993. break;
  6994. case "case":
  6995. _formdiv = new U.UF.UI.form(
  6996. "课程进展",
  6997. $$("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 }), {
  6998. "id": "case",
  6999. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7000. "onresize": function () { }
  7001. }, {
  7002. closecallback: function () { }
  7003. }, { "style": { "height": "36px" } }).form; //创建窗体
  7004. _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); } }
  7005. break;
  7006. case "snf":
  7007. _formdiv = new U.UF.UI.form(
  7008. "赛诺梵",
  7009. $$("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" }), {
  7010. "id": "snf",
  7011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7012. "onresize": function () { }
  7013. }, {
  7014. closecallback: function () { }
  7015. }, { "style": { "height": "36px" } }).form; //创建窗体
  7016. _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); } }
  7017. break;
  7018. case "hanFamily":
  7019. _formdiv = new U.UF.UI.form(
  7020. "汉字家族",
  7021. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7022. "id": "hanFamily",
  7023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7024. "onresize": function () { }
  7025. }, {
  7026. closecallback: function () { }
  7027. }, { "style": { "height": "36px" } }).form; //创建窗体
  7028. _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); } }
  7029. break;
  7030. case "hanClassics":
  7031. _formdiv = new U.UF.UI.form(
  7032. "国学经典",
  7033. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7034. "id": "hanClassics",
  7035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7036. "onresize": function () { }
  7037. }, {
  7038. closecallback: function () { }
  7039. }, { "style": { "height": "36px" } }).form; //创建窗体
  7040. _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); } }
  7041. break;
  7042. case "hanTraining":
  7043. _formdiv = new U.UF.UI.form(
  7044. "笔画训练",
  7045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7046. "id": "hanTraining",
  7047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7048. "onresize": function () { }
  7049. }, {
  7050. closecallback: function () { }
  7051. }, { "style": { "height": "36px" } }).form; //创建窗体
  7052. _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); } }
  7053. break;
  7054. case "hanClass":
  7055. _formdiv = new U.UF.UI.form(
  7056. "书法课堂",
  7057. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7058. "id": "hanClass",
  7059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7060. "onresize": function () { }
  7061. }, {
  7062. closecallback: function () { }
  7063. }, { "style": { "height": "36px" } }).form; //创建窗体
  7064. _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); } }
  7065. break;
  7066. case "han":
  7067. _formdiv = new U.UF.UI.form(
  7068. "汉字宫",
  7069. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7070. "id": "han",
  7071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7072. "onresize": function () { }
  7073. }, {
  7074. closecallback: function () { }
  7075. }, { "style": { "height": "36px" } }).form; //创建窗体
  7076. _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); } }
  7077. break;
  7078. case "projectGM": //课程管理
  7079. _formdiv = new U.UF.UI.form(
  7080. "课程管理",
  7081. $$("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 }), {
  7082. "id": "projectGM",
  7083. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7084. "onresize": function () { }
  7085. }, {
  7086. closecallback: function () { }
  7087. }, { "style": { "height": "36px" } }).form; //创建窗体
  7088. _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); } }
  7089. break;
  7090. case "studyGM": //课程中心
  7091. _formdiv = new U.UF.UI.form(
  7092. "课程中心",
  7093. $$("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
  7094. "id": "study",
  7095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7096. "onresize": function () { }
  7097. }, {
  7098. closecallback: function () { }
  7099. }, { "style": { "height": "36px" } }).form; //创建窗体
  7100. _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); } }
  7101. break;
  7102. // studentGM
  7103. case "studentGM": //学生管理
  7104. _formdiv = new U.UF.UI.form(
  7105. "学生管理",
  7106. $$("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 }), {
  7107. "id": "studentGM",
  7108. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7114. break;
  7115. case "evaluateGM": //学生评价
  7116. _formdiv = new U.UF.UI.form(
  7117. "学生评价",
  7118. $$("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 }), {
  7119. "id": "evaluateGM",
  7120. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //创建窗体
  7125. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7126. break;
  7127. // classGM
  7128. case "classGM": //班级管理
  7129. _formdiv = new U.UF.UI.form(
  7130. "班级管理",
  7131. $$("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 }), {
  7132. "id": "classGM",
  7133. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7134. "onresize": function () { }
  7135. }, {
  7136. closecallback: function () { }
  7137. }, { "style": { "height": "36px" } }).form; //创建窗体
  7138. _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); } }
  7139. break;
  7140. // dataGM
  7141. case "dataGM":
  7142. _formdiv = new U.UF.UI.form(
  7143. "我的资料",
  7144. $$("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 }), {
  7145. "id": "dataGM",
  7146. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7147. "onresize": function () { }
  7148. }, {
  7149. closecallback: function () { }
  7150. }, { "style": { "height": "36px" } }).form; //创建窗体
  7151. _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); } }
  7152. break;
  7153. // caseGM
  7154. case "caseGM": //课程进展
  7155. _formdiv = new U.UF.UI.form(
  7156. "课程进展",
  7157. $$("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 }), {
  7158. "id": "caseGM",
  7159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7160. "onresize": function () { }
  7161. }, {
  7162. closecallback: function () { }
  7163. }, { "style": { "height": "36px" } }).form; //创建窗体
  7164. _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); } }
  7165. break;
  7166. // meterialGM
  7167. case "meterialGM": //素材库
  7168. _formdiv = new U.UF.UI.form(
  7169. "素材库",
  7170. $$("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 }), {
  7171. "id": "meterialGM",
  7172. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, { "style": { "height": "36px" } }).form; //创建窗体
  7177. _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); } }
  7178. break;
  7179. // evaluateSGM
  7180. case "evaluateSGM": //我的评价
  7181. _formdiv = new U.UF.UI.form(
  7182. "我的评价",
  7183. $$("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 }), {
  7184. "id": "evaluateSGM",
  7185. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7186. "onresize": function () { }
  7187. }, {
  7188. closecallback: function () { }
  7189. }, { "style": { "height": "36px" } }).form; //创建窗体
  7190. _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); } }
  7191. break;
  7192. case "jupyter": //jupyter
  7193. _formdiv = new U.UF.UI.form(
  7194. "jupyter",
  7195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7196. "id": "jupyter",
  7197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7198. "onresize": function () { }
  7199. }, {
  7200. closecallback: function () { }
  7201. }, { "style": { "height": "36px" } }).form; //创建窗体
  7202. _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); } }
  7203. break;
  7204. case "number": //数字实验室
  7205. _formdiv = new U.UF.UI.form(
  7206. "数字实验室",
  7207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7208. "id": "number",
  7209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7210. "onresize": function () { }
  7211. }, {
  7212. closecallback: function () { }
  7213. }, { "style": { "height": "36px" } }).form; //创建窗体
  7214. _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); } }
  7215. break;
  7216. case "studentCourse": //项目管理 学生
  7217. _formdiv = new U.UF.UI.form(
  7218. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7219. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7220. "id": "studentCourse",
  7221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7222. "onresize": function () { }
  7223. }, {
  7224. closecallback: function () { }
  7225. }, { "style": { "height": "36px" } }).form; //创建窗体
  7226. _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); } }
  7227. break;
  7228. case "studentCourseS": //项目管理 老师
  7229. _formdiv = new U.UF.UI.form(
  7230. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7231. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7232. "id": "studentCourseS",
  7233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7234. "onresize": function () { }
  7235. }, {
  7236. closecallback: function () { }
  7237. }, { "style": { "height": "36px" } }).form; //创建窗体
  7238. _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); } }
  7239. break;
  7240. case "studentIndex": //项目中心
  7241. _formdiv = new U.UF.UI.form(
  7242. "项目中心",
  7243. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7244. "id": "studentIndex",
  7245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7246. "onresize": function () { }
  7247. }, {
  7248. closecallback: function () { }
  7249. }, { "style": { "height": "36px" } }).form; //创建窗体
  7250. _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); } }
  7251. break;
  7252. case "CaseDesignS":
  7253. _formdiv = new U.UF.UI.form(
  7254. "项目进展",
  7255. $$("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 }), {
  7256. "id": "case",
  7257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7258. "onresize": function () { }
  7259. }, {
  7260. closecallback: function () { }
  7261. }, { "style": { "height": "36px" } }).form; //创建窗体
  7262. _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); } }
  7263. break;
  7264. case "tcStudent": //腾讯学生管理
  7265. _formdiv = new U.UF.UI.form(
  7266. "学生管理",
  7267. $$("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 }), {
  7268. "id": "tcStudent",
  7269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7270. "onresize": function () { }
  7271. }, {
  7272. closecallback: function () { }
  7273. }, { "style": { "height": "36px" } }).form; //创建窗体
  7274. _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); } }
  7275. break;
  7276. case "tcSchool": //腾讯学校管理
  7277. _formdiv = new U.UF.UI.form(
  7278. "学校管理",
  7279. $$("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 }), {
  7280. "id": "tcSchool",
  7281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7282. "onresize": function () { }
  7283. }, {
  7284. closecallback: function () { }
  7285. }, { "style": { "height": "36px" } }).form; //创建窗体
  7286. _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); } }
  7287. break;
  7288. case "tcTeacher": //腾讯学校管理
  7289. _formdiv = new U.UF.UI.form(
  7290. "教师管理",
  7291. $$("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 }), {
  7292. "id": "tcTeacher",
  7293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7294. "onresize": function () { }
  7295. }, {
  7296. closecallback: function () { }
  7297. }, { "style": { "height": "36px" } }).form; //创建窗体
  7298. _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); } }
  7299. break;
  7300. case "teacher":
  7301. _formdiv = new U.UF.UI.form(
  7302. "教师管理",
  7303. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7304. "id": "teacher",
  7305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7306. "onresize": function () { }
  7307. }, {
  7308. closecallback: function () { }
  7309. }, { "style": { "height": "36px" } }).form; //创建窗体
  7310. _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); } }
  7311. break;
  7312. case "tcData": //腾讯我的资料
  7313. _formdiv = new U.UF.UI.form(
  7314. "我的资料",
  7315. $$("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 }), {
  7316. "id": "tcData",
  7317. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7318. "onresize": function () { }
  7319. }, {
  7320. closecallback: function () { }
  7321. }, { "style": { "height": "36px" } }).form; //创建窗体
  7322. _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); } }
  7323. break;
  7324. case "tcNotice": //腾讯消息通知
  7325. _formdiv = new U.UF.UI.form(
  7326. "消息通知",
  7327. $$("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 }), {
  7328. "id": "tcNotice",
  7329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7330. "onresize": function () { }
  7331. }, {
  7332. closecallback: function () { }
  7333. }, { "style": { "height": "36px" } }).form; //创建窗体
  7334. _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); } }
  7335. break;
  7336. case "myReport": //好友打开
  7337. _formdiv = new U.UF.UI.form(
  7338. "我的评价",
  7339. $$("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 }), {
  7340. "id": "myReport",
  7341. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7342. "onresize": function () { }
  7343. }, {
  7344. closecallback: function () { }
  7345. }, { "style": { "height": "36px" } }).form; //创建窗体
  7346. _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); } }
  7347. break;
  7348. case "learnAna": //好友打开
  7349. _formdiv = new U.UF.UI.form(
  7350. "学习分析",
  7351. $$("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 }), {
  7352. "id": "learnAna",
  7353. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7354. "onresize": function () { }
  7355. }, {
  7356. closecallback: function () { }
  7357. }, { "style": { "height": "36px" } }).form; //创建窗体
  7358. _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); } }
  7359. break;
  7360. case "AIChat": //AI共创
  7361. _formdiv = new U.UF.UI.form(
  7362. "AI共创",
  7363. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7364. "id": "AIChat",
  7365. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7366. "onresize": function () { }
  7367. }, {
  7368. istop: true,
  7369. closecallback: function () { $("#aichat_icon").remove(); },
  7370. narrowcallback: function () {
  7371. if (!$("#aichat_icon")[0]) {
  7372. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7373. }
  7374. },
  7375. }, { "style": { "height": "36px" } }).form; //创建窗体
  7376. _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); } }
  7377. break;
  7378. case "ainew": //AI共创
  7379. _formdiv = new U.UF.UI.form(
  7380. "AI协同",
  7381. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7382. "id": "ainew",
  7383. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, { "style": { "height": "36px" } }).form; //创建窗体
  7388. _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); } }
  7389. break;
  7390. case "gpt4": //gpt4
  7391. _formdiv = new U.UF.UI.form(
  7392. "AI助手",
  7393. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7394. "id": "gpt4",
  7395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7396. "onresize": function () { }
  7397. }, {
  7398. closecallback: function () { }
  7399. }, { "style": { "height": "36px" } }).form; //创建窗体
  7400. _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); } }
  7401. break;
  7402. case "aigpt": //gpt4
  7403. _formdiv = new U.UF.UI.form(
  7404. "AI助手+",
  7405. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7406. "id": "aigpt",
  7407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7408. "onresize": function () { }
  7409. }, {
  7410. closecallback: function () {
  7411. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7412. }
  7413. }, { "style": { "height": "36px" } }).form; //创建窗体
  7414. _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); } }
  7415. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7416. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7417. })
  7418. break;
  7419. case "aiKnowledge": //aiKnowledge
  7420. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7421. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7422. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7423. }
  7424. _formdiv = new U.UF.UI.form(
  7425. "知识建构",
  7426. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7427. "id": "aiKnowledge",
  7428. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7429. "onresize": function () { }
  7430. }, {
  7431. closecallback: function () { }
  7432. }, { "style": { "height": "36px" } }).form; //创建窗体
  7433. _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); } }
  7434. break;
  7435. case "futureClass": //AI共创
  7436. _formdiv = new U.UF.UI.form(
  7437. "协同建构",
  7438. $$("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
  7439. "id": "synergyCourse",
  7440. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7441. "onresize": function () { }
  7442. }, {
  7443. closecallback: function () {
  7444. $("iframe", _formdiv)[0].contentWindow.loginout();
  7445. }
  7446. }, { "style": { "height": "36px" } }).form; //创建窗体
  7447. _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); } }
  7448. break;
  7449. case "aiagent": //ai agent
  7450. _formdiv = new U.UF.UI.form(
  7451. "AI Agent",
  7452. $$("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" }), {
  7453. "id": "AIAgent",
  7454. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7455. "onresize": function () { }
  7456. }, {
  7457. closecallback: function () { }
  7458. }, { "style": { "height": "36px" } }).form; //创建窗体
  7459. _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); } }
  7460. break;
  7461. case "dataBoard": //数据看板
  7462. _formdiv = new U.UF.UI.form(
  7463. "数据看板",
  7464. $$("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 }), {
  7465. "id": "dataBoard",
  7466. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7467. "onresize": function () { }
  7468. }, {
  7469. closecallback: function () { }
  7470. }, { "style": { "height": "36px" } }).form; //创建窗体
  7471. _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); } }
  7472. break;
  7473. case "dataBoardSies": //数据融合
  7474. _formdiv = new U.UF.UI.form(
  7475. "数据融合",
  7476. $$("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 }), {
  7477. "id": "dataBoardSies",
  7478. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7479. "onresize": function () { }
  7480. }, {
  7481. closecallback: function () { }
  7482. }, { "style": { "height": "36px" } }).form; //创建窗体
  7483. _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); } }
  7484. break;
  7485. case "dataBoardNew": //数据看板
  7486. _formdiv = new U.UF.UI.form(
  7487. "综合看板",
  7488. $$("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 }), {
  7489. "id": "dataBoardNew",
  7490. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, { "style": { "height": "36px" } }).form; //创建窗体
  7495. _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); } }
  7496. break;
  7497. case "dataBoardTest": //数据看板
  7498. _formdiv = new U.UF.UI.form(
  7499. "评测看板",
  7500. $$("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 }), {
  7501. "id": "dataBoardTest",
  7502. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7503. "onresize": function () { }
  7504. }, {
  7505. closecallback: function () { }
  7506. }, { "style": { "height": "36px" } }).form; //创建窗体
  7507. _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); } }
  7508. break;
  7509. case "AIAnalyse": //AI共创
  7510. _formdiv = new U.UF.UI.form(
  7511. "AI分析",
  7512. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7513. "id": "AIAnalyse",
  7514. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7515. "onresize": function () { }
  7516. }, {
  7517. closecallback: function () { }
  7518. }, { "style": { "height": "36px" } }).form; //创建窗体
  7519. _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); } }
  7520. break;
  7521. case "studioCourse": //AI共创
  7522. _formdiv = new U.UF.UI.form(
  7523. "工作管理",
  7524. $$("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 }), {
  7525. "id": "studioCourse",
  7526. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7527. "onresize": function () { }
  7528. }, {
  7529. closecallback: function () { }
  7530. }, { "style": { "height": "36px" } }).form; //创建窗体
  7531. _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); } }
  7532. break;
  7533. case "studioIndex": //AI共创
  7534. _formdiv = new U.UF.UI.form(
  7535. "工作中心",
  7536. $$("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 }), {
  7537. "id": "studioIndex",
  7538. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7539. "onresize": function () { }
  7540. }, {
  7541. closecallback: function () { }
  7542. }, { "style": { "height": "36px" } }).form; //创建窗体
  7543. _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); } }
  7544. break;
  7545. case "source":
  7546. _formdiv = new U.UF.UI.form(
  7547. "教学资源",
  7548. $$("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 }), {
  7549. "id": "source",
  7550. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7551. "onresize": function () { }
  7552. }, {
  7553. closecallback: function () { }
  7554. }, { "style": { "height": "36px" } }).form; //创建窗体
  7555. _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); } }
  7556. break;
  7557. case "testTeacher":
  7558. _formdiv = new U.UF.UI.form(
  7559. "智能表单",
  7560. $$("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 }), {
  7561. "id": "testTeacher",
  7562. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7563. "onresize": function () { }
  7564. }, {
  7565. closecallback: function () { }
  7566. }, { "style": { "height": "36px" } }).form; //创建窗体
  7567. _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); } }
  7568. break;
  7569. case "testStudent":
  7570. _formdiv = new U.UF.UI.form(
  7571. "教师中心",
  7572. $$("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 }), {
  7573. "id": "testStudent",
  7574. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7575. "onresize": function () { }
  7576. }, {
  7577. closecallback: function () { }
  7578. }, { "style": { "height": "36px" } }).form; //创建窗体
  7579. _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); } }
  7580. break;
  7581. case "testTeacherSies":
  7582. _formdiv = new U.UF.UI.form(
  7583. "教师管理",
  7584. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7585. "id": "testTeacherSies",
  7586. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7587. "onresize": function () { }
  7588. }, {
  7589. closecallback: function () { }
  7590. }, { "style": { "height": "36px" } }).form; //创建窗体
  7591. _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); } }
  7592. break;
  7593. case "testStudentSies":
  7594. _formdiv = new U.UF.UI.form(
  7595. "教师中心",
  7596. $$("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 }), {
  7597. "id": "testStudentSies",
  7598. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7599. "onresize": function () { }
  7600. }, {
  7601. closecallback: function () { }
  7602. }, { "style": { "height": "36px" } }).form; //创建窗体
  7603. _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); } }
  7604. break;
  7605. case "ytpbl": //消息通知
  7606. _formdiv = new U.UF.UI.form(
  7607. "案例征集",
  7608. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7609. "id": "ytpbl",
  7610. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7611. "onresize": function () { }
  7612. }, {
  7613. closecallback: function () { }
  7614. }, { "style": { "height": "36px" } }).form; //创建窗体
  7615. _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); } }
  7616. // 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");
  7617. break;
  7618. case "aiCourseResource": //人工智能窗体
  7619. _formdiv = new U.UF.UI.form(
  7620. false,
  7621. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  7622. "id": "aiCourseResource",
  7623. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7624. "onresize": function () { },
  7625. "isdrag": false,
  7626. }, {
  7627. closecallback: function () { }
  7628. }, { "style": { "height": "36px" } }).form; //创建窗体
  7629. _taskbar = ''
  7630. break;
  7631. case "szdjgCocooroboX": //图形化编程
  7632. _formdiv = new U.UF.UI.form(
  7633. "图形化编程",
  7634. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7635. "id": "szdjgCocooroboX",
  7636. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7637. "onresize": function () { }
  7638. }, {
  7639. closecallback: function () { }
  7640. }, { "style": { "height": "36px" } }).form; //创建窗体
  7641. _taskbar = ''
  7642. break;
  7643. case "szdjgPython": //python编程
  7644. _formdiv = new U.UF.UI.form(
  7645. "Python编程",
  7646. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7647. "id": "szdjgPython",
  7648. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7649. "onresize": function () { }
  7650. }, {
  7651. closecallback: function () { }
  7652. }, { "style": { "height": "36px" } }).form; //创建窗体
  7653. _taskbar = ''
  7654. break;
  7655. case "Record":
  7656. _formdiv = new U.UF.UI.form(
  7657. "观察记录",
  7658. $$("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 }), {
  7659. "id": "Record",
  7660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7661. "onresize": function () { }
  7662. }, {
  7663. closecallback: function () { }
  7664. }, { "style": { "height": "36px" } }).form; //创建窗体
  7665. _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); } }
  7666. break;
  7667. case "aigptCourse":
  7668. _formdiv = new U.UF.UI.form(
  7669. "AI智能体",
  7670. $$("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' }), {
  7671. "id": "aigptCourse",
  7672. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7673. "onresize": function () { }
  7674. }, {
  7675. closecallback: function () { }
  7676. }, { "style": { "height": "36px" } }).form; //创建窗体
  7677. _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); } }
  7678. break;
  7679. case "classroomObservation":
  7680. _formdiv = new U.UF.UI.form(
  7681. "课堂观察",
  7682. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7683. "id": "classroomObservation",
  7684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7685. "onresize": function () { }
  7686. }, {
  7687. closecallback: function () { }
  7688. }, { "style": { "height": "36px" } }).form; //创建窗体
  7689. _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); } }
  7690. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7691. break;
  7692. case "pblCourse":
  7693. _formdiv = new U.UF.UI.form(
  7694. "学生PBL",
  7695. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7696. "id": "pblCourse",
  7697. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7698. "onresize": function () { }
  7699. }, {
  7700. closecallback: function () { }
  7701. }, { "style": { "height": "36px" } }).form; //创建窗体
  7702. _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); } }
  7703. break;
  7704. case "appStore":
  7705. U.MD.D.addOp('','cocoflowOpen','')
  7706. _formdiv = new U.UF.UI.form(
  7707. "CocoFlow",
  7708. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7709. "id": "appStore",
  7710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7711. "onresize": function () { }
  7712. }, {
  7713. closecallback: function () { }
  7714. }, { "style": { "height": "36px" } }).form; //创建窗体
  7715. _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); } }
  7716. break;
  7717. case "sassPlatform":
  7718. _formdiv = new U.UF.UI.form(
  7719. "Sass通用后台管理",
  7720. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7721. "id": "sassPlatform",
  7722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7723. "onresize": function () { }
  7724. }, {
  7725. closecallback: function () { }
  7726. }, { "style": { "height": "36px" } }).form; //创建窗体
  7727. _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); } }
  7728. break;
  7729. case "EDU":
  7730. _formdiv = new U.UF.UI.form(
  7731. "EDU",
  7732. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7733. "id": "EDU",
  7734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7735. "onresize": function () { }
  7736. }, {
  7737. closecallback: function () { }
  7738. }, { "style": { "height": "36px" } }).form; //创建窗体
  7739. _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); } }
  7740. break;
  7741. case "knowledge":
  7742. _formdiv = new U.UF.UI.form(
  7743. "知识库",
  7744. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7745. "id": "knowledge",
  7746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7747. "onresize": function () { }
  7748. }, {
  7749. closecallback: function () { }
  7750. }, { "style": { "height": "36px" } }).form; //创建窗体
  7751. _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); } }
  7752. break;
  7753. case "userExamine":
  7754. _formdiv = new U.UF.UI.form(
  7755. "账号申请",
  7756. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7757. "id": "userExamine",
  7758. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7759. "onresize": function () { }
  7760. }, {
  7761. closecallback: function () { }
  7762. }, { "style": { "height": "36px" } }).form; //创建窗体
  7763. break;
  7764. case "cocoflowDeskTop": //cocoflowDeskTop
  7765. _formdiv = new U.UF.UI.form(
  7766. false,
  7767. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7768. "id": "cocoflowDeskTop",
  7769. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7770. "onresize": function () { },
  7771. }, {
  7772. closecallback: function () { },
  7773. "isdrag": false,
  7774. }, { "style": { "height": "36px" } }).form; //创建窗体
  7775. _taskbar = ''
  7776. break;
  7777. case "liyuanLogin": //liyuanLogin
  7778. _formdiv = new U.UF.UI.form(
  7779. false,
  7780. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7781. "id": "liyuanLogin",
  7782. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7783. "onresize": function () { },
  7784. }, {
  7785. closecallback: function () { },
  7786. isdrag: false,
  7787. isstretching: false,
  7788. isenlarge: false,
  7789. isnarrow: false
  7790. }, { "style": { "height": "36px" } }).form; //创建窗体
  7791. _taskbar = ''
  7792. break;
  7793. case "updatePaDialog":
  7794. _formdiv = new U.UF.UI.form(
  7795. "密码修改",
  7796. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7797. "id": "updatePaDialog",
  7798. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7799. "onresize": function () { },
  7800. }, {
  7801. closecallback: function () { },
  7802. isclose: false,
  7803. isdrag: false,
  7804. isstretching: false,
  7805. isenlarge: false,
  7806. isnarrow: false
  7807. }, { "style": { "height": "36px" } }).form; //创建窗体
  7808. break;
  7809. }
  7810. //U.MD.D.I.openClick(str);
  7811. //如果有任务栏信息
  7812. if (_taskbar) {
  7813. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7814. }
  7815. if(iframeBool){
  7816. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7817. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7818. // console.log("iframe进入");
  7819. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7820. // };
  7821. setTimeout(() => {
  7822. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7823. }, 2000);
  7824. }
  7825. }
  7826. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7827. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7828. _userinfo = US.userInfo, //登录用户信息
  7829. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7830. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7831. let iframeBool = true;
  7832. let queryString = ''
  7833. if(array && array.length){
  7834. const paramsMap = {
  7835. userid: _userid,
  7836. org: _org,
  7837. oid: _oid,
  7838. type: _type,
  7839. role: _role,
  7840. classId: _classId,
  7841. TscreenType: _TscreenType,
  7842. SscreenType: _SscreenType
  7843. };
  7844. const canshu = array
  7845. .filter(param => paramsMap[param] !== undefined)
  7846. .map(param => `${param}=${paramsMap[param]}`);
  7847. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7848. }
  7849. let _url = url + queryString
  7850. if(U.UF.UI.form.allForm[id]){
  7851. iframeBool = false
  7852. }
  7853. _formdiv = new U.UF.UI.form(
  7854. false,
  7855. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  7856. {
  7857. "id": id,
  7858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7859. "onresize": function () { },
  7860. },
  7861. {
  7862. closecallback: function () { },
  7863. isdrag: false,
  7864. isstretching: false,
  7865. isenlarge: false,
  7866. isnarrow: false
  7867. },
  7868. { "style": { "height": "36px" } },
  7869. undefined,
  7870. undefined,
  7871. dom
  7872. ).form
  7873. }
  7874. // U.MD.D.I.openClick = function(str){
  7875. // var click = '';
  7876. // switch(str){
  7877. // case 'friend':
  7878. // click = '我的好友';
  7879. // break;
  7880. // case 'domain':
  7881. // click = '域名管理';
  7882. // break;
  7883. // case 'disk':
  7884. // click = '我的云盘';
  7885. // break;
  7886. // case 'word':
  7887. // click = 'Word';
  7888. // break;
  7889. // case 'excel':
  7890. // click = 'Execl';
  7891. // break;
  7892. // case 'txt':
  7893. // click = '文本文件';
  7894. // break;
  7895. // case 'lookupFriend':
  7896. // click = '查找好友';
  7897. // break;
  7898. // case 'ftp':
  7899. // click = 'FTP';
  7900. // break;
  7901. // case 'group':
  7902. // click = '群组';
  7903. // break;
  7904. // case 'set':
  7905. // click = '我的设置';
  7906. // break;
  7907. // case 'systemSet':
  7908. // click = '系统设置';
  7909. // break;
  7910. // case 'boomYun':
  7911. // click = '互联办公';
  7912. // break;
  7913. // case 'xz':
  7914. // click = '云端下载';
  7915. // break;
  7916. // case 'client':
  7917. // click = '有思浏览器';
  7918. // break;
  7919. // case 'backEndProgramming':
  7920. // click = '在线后台编程';
  7921. // break;
  7922. // case 'frontEndProgramming':
  7923. // click = '在线前端编程';
  7924. // break;
  7925. // default: break;
  7926. // }
  7927. // if(U.MD.D.I.Ip && click){
  7928. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7929. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7930. // })
  7931. // }
  7932. // }
  7933. /**
  7934. *函数作用:ajax简易函数,使用post格式
  7935. *@param url {data} 后台地址
  7936. *@param data {data} 参数json
  7937. *@param fn {data} 回调函数
  7938. *
  7939. */
  7940. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7941. // var xhr = new XMLHttpRequest();
  7942. // xhr.open("GET",url,true);
  7943. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7944. // xhr.onreadystatechange = function(){
  7945. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7946. // fn.call(this,xhr.responseText);
  7947. // }
  7948. // };
  7949. // xhr.send();
  7950. // }
  7951. /*判断是否是内网IP*/
  7952. // U.MD.D.I.isInnerIPFn = function(str){
  7953. // var curPageUrl = str;
  7954. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7955. // curPageUrl =curPageUrl.replace(reg1,'');
  7956. // // console.log('curPageUrl-1 '+curPageUrl);
  7957. // var reg2 = /\:+/g;//替换冒号为一点
  7958. // curPageUrl =curPageUrl.replace(reg2,'.');
  7959. // // console.log('curPageUrl-2 '+curPageUrl);
  7960. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7961. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7962. // if(curPageUrl[2] != '16'){
  7963. // return ipAddress;
  7964. // }else{
  7965. // return false;
  7966. // }
  7967. // }
  7968. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7969. // //compatibility for firefox and chrome
  7970. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7971. // var pc = new myPeerConnection({
  7972. // iceServers: []
  7973. // }),
  7974. // noop = function() {},
  7975. // localIPs = {},
  7976. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7977. // key;
  7978. // function iterateIP(ip) {
  7979. // if (!localIPs[ip]) onNewIP(ip);
  7980. // localIPs[ip] = true;
  7981. // }
  7982. // //create a bogus data channel
  7983. // pc.createDataChannel("");
  7984. // // create offer and set local description
  7985. // pc.createOffer().then(function(sdp) {
  7986. // sdp.sdp.split('\n').forEach(function(line) {
  7987. // if (line.indexOf('candidate') < 0) return;
  7988. // line.match(ipRegex).forEach(iterateIP);
  7989. // });
  7990. // pc.setLocalDescription(sdp, noop, noop);
  7991. // }).catch(function(reason) {
  7992. // // An error occurred, so handle the failure to connect
  7993. // });
  7994. // //sten for candidate events
  7995. // pc.onicecandidate = function(ice) {
  7996. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7997. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7998. // };
  7999. // }
  8000. // U.MD.D.I.getUserIpBool = function(callback){
  8001. // U.MD.D.I.getUserIP(function(ip){
  8002. // alert("Got IP! :" + ip);
  8003. // });
  8004. //}
  8005. //#endregion
  8006. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8007. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8008. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8009. _userinfo = US.userInfo, //登录用户信息
  8010. _userid = US.userInfo.userid //登录用户id
  8011. let _iframe;
  8012. let _cid = cid,
  8013. _stage = stage,
  8014. _task = task,
  8015. _tool = tool;
  8016. var _jie = $$("div", {
  8017. "style": {
  8018. "position": "absolute",
  8019. "bottom": "50px",
  8020. "right": "50px",
  8021. "zIndex": "9999",
  8022. "backgroundColor": "#2268bc",
  8023. "color": "#fff",
  8024. "padding": "12px 20px",
  8025. "cursor": "pointer",
  8026. "borderRadius": "4px",
  8027. },
  8028. "innerHTML": "提交作业"
  8029. })
  8030. let aTool = ''
  8031. let _loading = document.createElement('div')
  8032. _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;"
  8033. // _loading.id = "";
  8034. let _lchild = document.createElement('div')
  8035. let _limg = document.createElement('img')
  8036. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8037. _limg.style = "width: 26px;margin-right: 10px;"
  8038. _lchild.appendChild(_limg)
  8039. let _lspan = document.createElement('span')
  8040. _lspan.innerHTML = "上传中..."
  8041. _lchild.appendChild(_lspan)
  8042. _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%);"
  8043. _loading.appendChild(_lchild)
  8044. var _box = $$('div', {
  8045. "style": {
  8046. "position": "relative",
  8047. "width": "100%",
  8048. "height": "100%",
  8049. },
  8050. })
  8051. _box.appendChild(_loading)
  8052. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8053. switch (str) {
  8054. case "whiteboard":
  8055. aTool = 1;
  8056. _iframe = $$("iframe", {
  8057. "frameborder": "no",
  8058. "border": "0",
  8059. "scrolling ": "no",
  8060. "style": {
  8061. "cssText": "border:0;width:100%;height:100%"
  8062. },
  8063. "src": "https://beta.iwb.cocorobo.cn/"
  8064. })
  8065. _box.appendChild(_iframe);
  8066. _box.appendChild(_jie);
  8067. _formdiv = new U.UF.UI.form(
  8068. "电子白板",
  8069. _box, {
  8070. "id": "whiteboard" + cid + stage + task + tool,
  8071. "style": {
  8072. "width": "90%",
  8073. "height": "90%",
  8074. "overflow": 'hidden'
  8075. },
  8076. "onresize": function () { }
  8077. }, {
  8078. closecallback: function () { }
  8079. }, {
  8080. "style": {
  8081. "height": "36px"
  8082. }
  8083. }).form; //创建窗体
  8084. _taskbar = {
  8085. "id": str + _formdiv.id,
  8086. "style": {
  8087. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8088. },
  8089. "name": "电子白板",
  8090. "forms": _formdiv,
  8091. "click": function () {
  8092. U.MD.D.I.openApplication(str, obj, info);
  8093. }
  8094. }
  8095. break;
  8096. case "mind":
  8097. aTool = 3;
  8098. _iframe = $$("iframe", {
  8099. "frameborder": "no",
  8100. "border": "0",
  8101. "scrolling ": "no",
  8102. "style": {
  8103. "cssText": "border:0;width:100%;height:100%"
  8104. },
  8105. "src": "/kityminder-editor/dist/index.html"
  8106. })
  8107. _box.appendChild(_iframe);
  8108. _box.appendChild(_jie);
  8109. _formdiv = new U.UF.UI.form(
  8110. "思维导图",
  8111. _box, { //"/jsmind/example/demo.html"
  8112. "id": "mind" + cid + stage + task + tool,
  8113. "style": {
  8114. "width": "90%",
  8115. "height": "90%",
  8116. "overflow": 'hidden'
  8117. },
  8118. "onresize": function () { }
  8119. }, {
  8120. closecallback: function () { }
  8121. }, {
  8122. "style": {
  8123. "height": "36px"
  8124. }
  8125. }).form; //创建窗体
  8126. _taskbar = {
  8127. "id": str + _formdiv.id,
  8128. "style": {
  8129. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8130. },
  8131. "name": "思维导图",
  8132. "forms": _formdiv,
  8133. "click": function () {
  8134. U.MD.D.I.openApplication(str, obj, info);
  8135. }
  8136. }
  8137. break;
  8138. case "MindMap":
  8139. aTool = 3;
  8140. _iframe = $$("iframe", {
  8141. "frameborder": "no",
  8142. "border": "0",
  8143. "scrolling ": "no",
  8144. "style": {
  8145. "cssText": "border:0;width:100%;height:100%"
  8146. },
  8147. "src": "//cloud.cocorobo.cn/mind/"
  8148. })
  8149. _box.appendChild(_iframe);
  8150. _box.appendChild(_jie);
  8151. _formdiv = new U.UF.UI.form(
  8152. "思维导图",
  8153. _box, { //"/jsmind/example/demo.html"
  8154. "id": "mind" + cid + stage + task + tool,
  8155. "style": {
  8156. "width": "90%",
  8157. "height": "90%",
  8158. "overflow": 'hidden'
  8159. },
  8160. "onresize": function () { }
  8161. }, {
  8162. closecallback: function () { }
  8163. }, {
  8164. "style": {
  8165. "height": "36px"
  8166. }
  8167. }).form; //创建窗体
  8168. _taskbar = {
  8169. "id": str + _formdiv.id,
  8170. "style": {
  8171. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8172. },
  8173. "name": "思维导图",
  8174. "forms": _formdiv,
  8175. "click": function () {
  8176. U.MD.D.I.openApplication(str, obj, info);
  8177. }
  8178. }
  8179. break;
  8180. case "doc":
  8181. aTool = 6;
  8182. _iframe = $$("iframe", {
  8183. "frameborder": "no",
  8184. "border": "0",
  8185. "scrolling ": "no",
  8186. "style": {
  8187. "cssText": "border:0;width:100%;height:100%"
  8188. },
  8189. "src": "/Office/Word/WordEditArea.htm"
  8190. })
  8191. _box.appendChild(_iframe);
  8192. _box.appendChild(_jie);
  8193. _formdiv = new U.UF.UI.form(
  8194. "协同文档",
  8195. _box, {
  8196. "id": "doc" + cid + stage + task + tool,
  8197. "style": {
  8198. "width": "90%",
  8199. "height": "90%",
  8200. "overflow": 'hidden'
  8201. },
  8202. "onresize": function () { }
  8203. }, {
  8204. closecallback: function () { }
  8205. }, {
  8206. "style": {
  8207. "height": "36px"
  8208. }
  8209. }).form; //创建窗体
  8210. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8211. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8212. })
  8213. _taskbar = {
  8214. "id": str + _formdiv.id,
  8215. "style": {
  8216. "backgroundImage": "url(/img/icon/doc.png)"
  8217. },
  8218. "name": "协同文档",
  8219. "forms": _formdiv,
  8220. "click": function () {
  8221. U.MD.D.I.openApplication(str, obj, info);
  8222. }
  8223. }
  8224. break;
  8225. case "mindNetwork": //好友打开
  8226. aTool = 7;
  8227. _iframe = $$("iframe", {
  8228. "webkitallowfullscreen": "",
  8229. "mozallowfullscreen": "",
  8230. "allowfullscreen": "",
  8231. "frameborder": "no",
  8232. "border": "0",
  8233. "scrolling ": "no",
  8234. "style": {
  8235. "cssText": "border:0; width:100%; height:100%;"
  8236. },
  8237. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8238. })
  8239. _box.appendChild(_iframe);
  8240. _box.appendChild(_jie);
  8241. _formdiv = new U.UF.UI.form(
  8242. "思维网格",
  8243. _box, {
  8244. "id": "mindNetwork" + cid + stage + task + tool,
  8245. "style": {
  8246. "width": "90%",
  8247. "height": "90%",
  8248. "overflow": 'hidden'
  8249. },
  8250. "onresize": function () { }
  8251. }, {
  8252. closecallback: function () { }
  8253. }, {
  8254. "style": {
  8255. "height": "36px"
  8256. }
  8257. }).form; //创建窗体
  8258. _taskbar = {
  8259. "id": str + _formdiv.id,
  8260. "style": {
  8261. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8262. },
  8263. "name": "思维网格",
  8264. "forms": _formdiv,
  8265. "click": function () {
  8266. U.MD.D.I.openApplication(str, obj, info);
  8267. }
  8268. }
  8269. break;
  8270. case "courseDesign":
  8271. _iframe = $$("iframe", {
  8272. "webkitallowfullscreen": "",
  8273. "mozallowfullscreen": "",
  8274. "allowfullscreen": "",
  8275. "frameborder": "no",
  8276. "border": "0",
  8277. "scrolling ": "no",
  8278. "style": {
  8279. "cssText": "border:0; width:100%; height:100%;"
  8280. },
  8281. "src": "/course-design-vue"
  8282. })
  8283. _box.appendChild(_iframe);
  8284. _box.appendChild(_jie);
  8285. _formdiv = new U.UF.UI.form(
  8286. "项目设计",
  8287. _box, {
  8288. "id": "courseDesign" + cid + stage + task + tool,
  8289. "style": {
  8290. "width": "90%",
  8291. "height": "90%",
  8292. "overflow": 'hidden'
  8293. },
  8294. "onresize": function () { }
  8295. }, {
  8296. closecallback: function () { }
  8297. }, {
  8298. "style": {
  8299. "height": "36px"
  8300. }
  8301. }).form; //创建窗体
  8302. _taskbar = {
  8303. "id": str + _formdiv.id,
  8304. "style": {
  8305. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8306. },
  8307. "name": "项目设计",
  8308. "forms": _formdiv,
  8309. "click": function () {
  8310. U.MD.D.I.openApplication(str, obj, info);
  8311. }
  8312. }
  8313. break;
  8314. }
  8315. const script1 = document.createElement("script");
  8316. script1.type = "text/javascript";
  8317. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8318. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8319. const script2 = document.createElement("script");
  8320. script2.type = "text/javascript";
  8321. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8322. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8323. const script3 = document.createElement("script");
  8324. script3.type = "text/javascript";
  8325. script3.charset = "UTF-8";
  8326. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8327. const script4 = document.createElement("script");
  8328. script4.type = "text/javascript";
  8329. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8330. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8331. if (_iframe) {
  8332. if (str == 'doc') {
  8333. _iframe = _formdiv.querySelector('iframe')
  8334. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8335. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8336. _iframe.contentWindow.document.body.appendChild(script1);
  8337. _iframe.contentWindow.document.body.appendChild(script2);
  8338. // _iframe.contentWindow.document.body.appendChild(script3);
  8339. _iframe.contentWindow.document.body.appendChild(script4);
  8340. })
  8341. if (onloadListener) {
  8342. _iframe.contentDocument.location.reload()
  8343. } else {
  8344. _iframe.contentDocument.location.reload()
  8345. }
  8346. } else if (str == 'courseDesign') {
  8347. U.UF.DL.iframeLoad(_iframe, function () {
  8348. // _iframe.contentWindow.U.MD.O.W.load();
  8349. // _iframe.contentWindow.document.body.appendChild(script1);
  8350. _iframe.contentWindow.document.body.appendChild(script2);
  8351. _iframe.contentWindow.document.body.appendChild(script4);
  8352. })
  8353. } else if (str == 'mind') {
  8354. _iframe = _formdiv.querySelector('iframe')
  8355. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8356. //
  8357. _iframe.contentWindow.document.body.appendChild(script1);
  8358. _iframe.contentWindow.document.body.appendChild(script2);
  8359. _iframe.contentWindow.document.body.appendChild(script4);
  8360. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8361. })
  8362. if (onloadListener) {
  8363. _iframe.contentDocument.location.reload()
  8364. } else {
  8365. _iframe.contentDocument.location.reload()
  8366. }
  8367. } else if (str == 'whiteboard') {
  8368. _iframe = _formdiv.querySelector('iframe')
  8369. let onloadListener = _iframe.onload = () => {
  8370. _iframe.contentWindow.document.body.appendChild(script1);
  8371. _iframe.contentWindow.document.body.appendChild(script2);
  8372. _iframe.contentWindow.document.body.appendChild(script4);
  8373. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8374. };
  8375. // if (onloadListener) {
  8376. // try {
  8377. // _iframe.src += "?cocorobo="+new Date().getTime()
  8378. // _iframe.contentWindow.document.location.reload()
  8379. // } catch (error) {
  8380. // }
  8381. // } else {
  8382. // _iframe.contentDocument.location.reload()
  8383. // }
  8384. } else {
  8385. _iframe.onload = () => {
  8386. _iframe.contentWindow.document.body.appendChild(script1);
  8387. _iframe.contentWindow.document.body.appendChild(script2);
  8388. // _iframe.contentWindow.document.body.appendChild(script3);
  8389. _iframe.contentWindow.document.body.appendChild(script4);
  8390. };
  8391. }
  8392. _jie.onclick = async () => {
  8393. let text = ''
  8394. if (aTool == 1) {
  8395. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8396. } else if (aTool == 6) {
  8397. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8398. } else if (aTool == 3) {
  8399. text = await U.MD.D.I.getEditorContent(_iframe);
  8400. }
  8401. _loading.style.display = 'flex'
  8402. console.log(_loading);
  8403. var _ajs = _iframe.contentWindow.document.createElement("script");
  8404. _ajs.type = "text/javascript";
  8405. _ajs.innerHTML =
  8406. // 'console.log(' + _loading + ');\n' +
  8407. 'var _js = document.createElement("script");\n' +
  8408. '_js.type="text/javascript";\n' +
  8409. '_js.charset="UTF-8";\n' +
  8410. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8411. "_js.onload = function(){\n" +
  8412. ' var a = document.getElementsByTagName("img")\n' +
  8413. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8414. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8415. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8416. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8417. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8418. "beforeUpload_shishi(file," +
  8419. "'" +
  8420. _userid +
  8421. "'" +
  8422. ", " +
  8423. "'" +
  8424. _cid +
  8425. "'" +
  8426. ", " +
  8427. "'" +
  8428. _stage +
  8429. "'" +
  8430. ", " +
  8431. "'" +
  8432. _task +
  8433. "'" +
  8434. ", " +
  8435. "'" +
  8436. _tool +
  8437. "'" +
  8438. ", " +
  8439. "'" +
  8440. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8441. "'" +
  8442. ", " +
  8443. "'" +
  8444. aTool +
  8445. "'" +
  8446. ", " +
  8447. "`" +
  8448. text +
  8449. "`" +
  8450. ")\n" +
  8451. " });\n" +
  8452. "}\n" +
  8453. "document.head.appendChild(_js);\n";
  8454. _iframe.contentWindow.document.head.appendChild(_ajs);
  8455. }
  8456. }
  8457. //U.MD.D.I.openClick(str);
  8458. //如果有任务栏信息
  8459. // if (_taskbar) {
  8460. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8461. // }
  8462. }
  8463. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8464. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8465. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8466. _userinfo = US.userInfo, //登录用户信息
  8467. _userid = US.userInfo.userid //登录用户id
  8468. let _iframe;
  8469. let _cid = cid,
  8470. _stage = stage,
  8471. _task = task,
  8472. _tool = tool;
  8473. var _jie = $$("div", {
  8474. "style": {
  8475. "position": "absolute",
  8476. "bottom": "50px",
  8477. "right": "50px",
  8478. "zIndex": "9999",
  8479. "backgroundColor": "#2268bc",
  8480. "color": "#fff",
  8481. "padding": "12px 20px",
  8482. "cursor": "pointer",
  8483. "borderRadius": "4px",
  8484. },
  8485. "innerHTML": "提交作业"
  8486. })
  8487. let aTool = ''
  8488. let _loading = document.createElement('div')
  8489. _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;"
  8490. // _loading.id = "";
  8491. let _lchild = document.createElement('div')
  8492. let _limg = document.createElement('img')
  8493. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8494. _limg.style = "width: 26px;margin-right: 10px;"
  8495. _lchild.appendChild(_limg)
  8496. let _lspan = document.createElement('span')
  8497. _lspan.innerHTML = "上传中..."
  8498. _lchild.appendChild(_lspan)
  8499. _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%);"
  8500. _loading.appendChild(_lchild)
  8501. let _box = $$('div', {
  8502. "style": {
  8503. "position": "relative",
  8504. "width": "100%",
  8505. "height": "100%",
  8506. },
  8507. })
  8508. _box.appendChild(_loading)
  8509. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8510. switch (str) {
  8511. case "whiteboard":
  8512. aTool = 1;
  8513. _iframe = $$("iframe", {
  8514. "frameborder": "no",
  8515. "border": "0",
  8516. "scrolling ": "no",
  8517. "style": {
  8518. "cssText": "border:0;width:100%;height:100%"
  8519. },
  8520. "src": "https://beta.iwb.cocorobo.cn/"
  8521. })
  8522. _box.appendChild(_iframe);
  8523. _box.appendChild(_jie);
  8524. _formdiv = new U.UF.UI.form(
  8525. "电子白板",
  8526. _box, {
  8527. "id": "whiteboard" + cid + stage + task + tool,
  8528. "style": {
  8529. "width": "90%",
  8530. "height": "90%",
  8531. "overflow": 'hidden'
  8532. },
  8533. "onresize": function () { }
  8534. }, {
  8535. closecallback: function () { }
  8536. }, {
  8537. "style": {
  8538. "height": "36px"
  8539. }
  8540. }).form; //创建窗体
  8541. _taskbar = {
  8542. "id": str + _formdiv.id,
  8543. "style": {
  8544. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8545. },
  8546. "name": "电子白板",
  8547. "forms": _formdiv,
  8548. "click": function () {
  8549. U.MD.D.I.openApplication(str, obj, info);
  8550. }
  8551. }
  8552. break;
  8553. case "mind":
  8554. aTool = 3;
  8555. _iframe = $$("iframe", {
  8556. "frameborder": "no",
  8557. "border": "0",
  8558. "scrolling ": "no",
  8559. "style": {
  8560. "cssText": "border:0;width:100%;height:100%"
  8561. },
  8562. "src": "/kityminder-editor/dist/index.html"
  8563. })
  8564. _box.appendChild(_iframe);
  8565. _box.appendChild(_jie);
  8566. _formdiv = new U.UF.UI.form(
  8567. "思维导图",
  8568. _box, { //"/jsmind/example/demo.html"
  8569. "id": "mind" + cid + stage + task + tool,
  8570. "style": {
  8571. "width": "90%",
  8572. "height": "90%",
  8573. "overflow": 'hidden'
  8574. },
  8575. "onresize": function () { }
  8576. }, {
  8577. closecallback: function () { }
  8578. }, {
  8579. "style": {
  8580. "height": "36px"
  8581. }
  8582. }).form; //创建窗体
  8583. _taskbar = {
  8584. "id": str + _formdiv.id,
  8585. "style": {
  8586. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8587. },
  8588. "name": "思维导图",
  8589. "forms": _formdiv,
  8590. "click": function () {
  8591. U.MD.D.I.openApplication(str, obj, info);
  8592. }
  8593. }
  8594. break;
  8595. case "MindMap":
  8596. aTool = 3;
  8597. _iframe = $$("iframe", {
  8598. "frameborder": "no",
  8599. "border": "0",
  8600. "scrolling ": "no",
  8601. "style": {
  8602. "cssText": "border:0;width:100%;height:100%"
  8603. },
  8604. "src": "//cloud.cocorobo.cn/mind/"
  8605. })
  8606. _box.appendChild(_iframe);
  8607. _box.appendChild(_jie);
  8608. _formdiv = new U.UF.UI.form(
  8609. "思维导图",
  8610. _box, { //"/jsmind/example/demo.html"
  8611. "id": "mind" + cid + stage + task + tool,
  8612. "style": {
  8613. "width": "90%",
  8614. "height": "90%",
  8615. "overflow": 'hidden'
  8616. },
  8617. "onresize": function () { }
  8618. }, {
  8619. closecallback: function () { }
  8620. }, {
  8621. "style": {
  8622. "height": "36px"
  8623. }
  8624. }).form; //创建窗体
  8625. _taskbar = {
  8626. "id": str + _formdiv.id,
  8627. "style": {
  8628. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8629. },
  8630. "name": "思维导图",
  8631. "forms": _formdiv,
  8632. "click": function () {
  8633. U.MD.D.I.openApplication(str, obj, info);
  8634. }
  8635. }
  8636. break;
  8637. case "doc":
  8638. aTool = 6;
  8639. _iframe = $$("iframe", {
  8640. "frameborder": "no",
  8641. "border": "0",
  8642. "scrolling ": "no",
  8643. "style": {
  8644. "cssText": "border:0;width:100%;height:100%"
  8645. },
  8646. "src": "/Office/Word/WordEditArea.htm"
  8647. })
  8648. _box.appendChild(_iframe);
  8649. _box.appendChild(_jie);
  8650. _formdiv = new U.UF.UI.form(
  8651. "协同文档",
  8652. _box, {
  8653. "id": "doc" + cid + stage + task + tool,
  8654. "style": {
  8655. "width": "90%",
  8656. "height": "90%",
  8657. "overflow": 'hidden'
  8658. },
  8659. "onresize": function () { }
  8660. }, {
  8661. closecallback: function () { }
  8662. }, {
  8663. "style": {
  8664. "height": "36px"
  8665. }
  8666. }).form; //创建窗体
  8667. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8668. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8669. })
  8670. _taskbar = {
  8671. "id": str + _formdiv.id,
  8672. "style": {
  8673. "backgroundImage": "url(/img/icon/doc.png)"
  8674. },
  8675. "name": "协同文档",
  8676. "forms": _formdiv,
  8677. "click": function () {
  8678. U.MD.D.I.openApplication(str, obj, info);
  8679. }
  8680. }
  8681. break;
  8682. case "mindNetwork": //好友打开
  8683. aTool = 7;
  8684. _iframe = $$("iframe", {
  8685. "webkitallowfullscreen": "",
  8686. "mozallowfullscreen": "",
  8687. "allowfullscreen": "",
  8688. "frameborder": "no",
  8689. "border": "0",
  8690. "scrolling ": "no",
  8691. "style": {
  8692. "cssText": "border:0; width:100%; height:100%;"
  8693. },
  8694. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8695. })
  8696. _box.appendChild(_iframe);
  8697. _box.appendChild(_jie);
  8698. _formdiv = new U.UF.UI.form(
  8699. "思维网格",
  8700. _box, {
  8701. "id": "mindNetwork" + cid + stage + task + tool,
  8702. "style": {
  8703. "width": "90%",
  8704. "height": "90%",
  8705. "overflow": 'hidden'
  8706. },
  8707. "onresize": function () { }
  8708. }, {
  8709. closecallback: function () { }
  8710. }, {
  8711. "style": {
  8712. "height": "36px"
  8713. }
  8714. }).form; //创建窗体
  8715. _taskbar = {
  8716. "id": str + _formdiv.id,
  8717. "style": {
  8718. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8719. },
  8720. "name": "思维网格",
  8721. "forms": _formdiv,
  8722. "click": function () {
  8723. U.MD.D.I.openApplication(str, obj, info);
  8724. }
  8725. }
  8726. break;
  8727. case "courseDesign":
  8728. _iframe = $$("iframe", {
  8729. "webkitallowfullscreen": "",
  8730. "mozallowfullscreen": "",
  8731. "allowfullscreen": "",
  8732. "frameborder": "no",
  8733. "border": "0",
  8734. "scrolling ": "no",
  8735. "style": {
  8736. "cssText": "border:0; width:100%; height:100%;"
  8737. },
  8738. "src": "/course-design-vue"
  8739. })
  8740. _box.appendChild(_iframe);
  8741. _box.appendChild(_jie);
  8742. _formdiv = new U.UF.UI.form(
  8743. "项目设计",
  8744. _box, {
  8745. "id": "courseDesign" + cid + stage + task + tool,
  8746. "style": {
  8747. "width": "90%",
  8748. "height": "90%",
  8749. "overflow": 'hidden'
  8750. },
  8751. "onresize": function () { }
  8752. }, {
  8753. closecallback: function () { }
  8754. }, {
  8755. "style": {
  8756. "height": "36px"
  8757. }
  8758. }).form; //创建窗体
  8759. _taskbar = {
  8760. "id": str + _formdiv.id,
  8761. "style": {
  8762. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8763. },
  8764. "name": "项目设计",
  8765. "forms": _formdiv,
  8766. "click": function () {
  8767. U.MD.D.I.openApplication(str, obj, info);
  8768. }
  8769. }
  8770. break;
  8771. }
  8772. const script1 = document.createElement("script");
  8773. script1.type = "text/javascript";
  8774. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8775. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8776. const script2 = document.createElement("script");
  8777. script2.type = "text/javascript";
  8778. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8779. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8780. const script3 = document.createElement("script");
  8781. script3.type = "text/javascript";
  8782. script3.charset = "UTF-8";
  8783. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8784. const script4 = document.createElement("script");
  8785. script4.type = "text/javascript";
  8786. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8787. script4.src = window.origin + "/js/Common/jietu2E.js";
  8788. if (_iframe) {
  8789. if (str == 'doc') {
  8790. _iframe = _formdiv.querySelector('iframe')
  8791. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8792. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8793. _iframe.contentWindow.document.body.appendChild(script1);
  8794. _iframe.contentWindow.document.body.appendChild(script2);
  8795. // _iframe.contentWindow.document.body.appendChild(script3);
  8796. _iframe.contentWindow.document.body.appendChild(script4);
  8797. })
  8798. if (onloadListener) {
  8799. _iframe.contentDocument.location.reload()
  8800. } else {
  8801. _iframe.contentDocument.location.reload()
  8802. }
  8803. } else if (str == 'courseDesign') {
  8804. U.UF.DL.iframeLoad(_iframe, function () {
  8805. // _iframe.contentWindow.U.MD.O.W.load();
  8806. // _iframe.contentWindow.document.body.appendChild(script1);
  8807. _iframe.contentWindow.document.body.appendChild(script2);
  8808. _iframe.contentWindow.document.body.appendChild(script4);
  8809. })
  8810. } else if (str == 'mind') {
  8811. _iframe = _formdiv.querySelector('iframe')
  8812. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8813. //
  8814. _iframe.contentWindow.document.body.appendChild(script1);
  8815. _iframe.contentWindow.document.body.appendChild(script2);
  8816. _iframe.contentWindow.document.body.appendChild(script4);
  8817. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8818. })
  8819. if (onloadListener) {
  8820. _iframe.contentDocument.location.reload()
  8821. } else {
  8822. _iframe.contentDocument.location.reload()
  8823. }
  8824. } else if (str == 'whiteboard') {
  8825. _iframe = _formdiv.querySelector('iframe')
  8826. let onloadListener = _iframe.onload = () => {
  8827. _iframe.contentWindow.document.body.appendChild(script1);
  8828. _iframe.contentWindow.document.body.appendChild(script2);
  8829. _iframe.contentWindow.document.body.appendChild(script4);
  8830. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8831. };
  8832. // if (onloadListener) {
  8833. // try {
  8834. // _iframe.src += "?cocorobo="+new Date().getTime()
  8835. // _iframe.contentWindow.document.location.reload()
  8836. // } catch (error) {
  8837. // }
  8838. // } else {
  8839. // _iframe.contentDocument.location.reload()
  8840. // }
  8841. } else {
  8842. _iframe.onload = () => {
  8843. _iframe.contentWindow.document.body.appendChild(script1);
  8844. _iframe.contentWindow.document.body.appendChild(script2);
  8845. // _iframe.contentWindow.document.body.appendChild(script3);
  8846. _iframe.contentWindow.document.body.appendChild(script4);
  8847. };
  8848. }
  8849. _jie.onclick = async () => {
  8850. let text = ''
  8851. if (aTool == 1) {
  8852. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8853. } else if (aTool == 6) {
  8854. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8855. } else if (aTool == 3) {
  8856. text = await U.MD.D.I.getEditorContent(_iframe);
  8857. }
  8858. _loading.style.display = 'flex'
  8859. console.log(_loading);
  8860. var _ajs = _iframe.contentWindow.document.createElement("script");
  8861. _ajs.type = "text/javascript";
  8862. _ajs.innerHTML =
  8863. // 'console.log(' + _loading + ');\n' +
  8864. 'var _js = document.createElement("script");\n' +
  8865. '_js.type="text/javascript";\n' +
  8866. '_js.charset="UTF-8";\n' +
  8867. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8868. "_js.onload = function(){\n" +
  8869. ' var a = document.getElementsByTagName("img")\n' +
  8870. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8871. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8872. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8873. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8874. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8875. "beforeUpload_shishi(file," +
  8876. "'" +
  8877. _userid +
  8878. "'" +
  8879. ", " +
  8880. "'" +
  8881. _cid +
  8882. "'" +
  8883. ", " +
  8884. "'" +
  8885. _stage +
  8886. "'" +
  8887. ", " +
  8888. "'" +
  8889. _task +
  8890. "'" +
  8891. ", " +
  8892. "'" +
  8893. _tool +
  8894. "'" +
  8895. ", " +
  8896. "'" +
  8897. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8898. "'" +
  8899. ", " +
  8900. "'" +
  8901. aTool +
  8902. "'" +
  8903. ", " +
  8904. "`" +
  8905. text +
  8906. "`" +
  8907. ")\n" +
  8908. " });\n" +
  8909. "}\n" +
  8910. "document.head.appendChild(_js);\n";
  8911. _iframe.contentWindow.document.head.appendChild(_ajs);
  8912. }
  8913. }
  8914. //U.MD.D.I.openClick(str);
  8915. //如果有任务栏信息
  8916. // if (_taskbar) {
  8917. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8918. // }
  8919. }
  8920. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8921. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8922. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8923. _userid = student.userid, //登录用户id
  8924. _username = student.student //用户名字
  8925. let _iframe;
  8926. let _cid = cid,
  8927. _stage = stage,
  8928. _task = task,
  8929. _tool = tool;
  8930. var _jie = $$("div", {
  8931. "style": {
  8932. "position": "absolute",
  8933. "bottom": "50px",
  8934. "right": "50px",
  8935. "zIndex": "9999",
  8936. "backgroundColor": "#2268bc",
  8937. "color": "#fff",
  8938. "padding": "12px 20px",
  8939. "cursor": "pointer",
  8940. "borderRadius": "4px",
  8941. },
  8942. "innerHTML": "提交作业"
  8943. })
  8944. let aTool = ''
  8945. let _loading = document.createElement('div')
  8946. _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;"
  8947. // _loading.id = "";
  8948. let _lchild = document.createElement('div')
  8949. let _limg = document.createElement('img')
  8950. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8951. _limg.style = "width: 26px;margin-right: 10px;"
  8952. _lchild.appendChild(_limg)
  8953. let _lspan = document.createElement('span')
  8954. _lspan.innerHTML = "上传中..."
  8955. _lchild.appendChild(_lspan)
  8956. _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%);"
  8957. _loading.appendChild(_lchild)
  8958. var _box = $$('div', {
  8959. "style": {
  8960. "position": "relative",
  8961. "width": "100%",
  8962. "height": "100%",
  8963. },
  8964. })
  8965. _box.appendChild(_loading)
  8966. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8967. switch (str) {
  8968. case "whiteboard":
  8969. aTool = 1;
  8970. _iframe = $$("iframe", {
  8971. "frameborder": "no",
  8972. "border": "0",
  8973. "scrolling ": "no",
  8974. "style": {
  8975. "cssText": "border:0;width:100%;height:100%"
  8976. },
  8977. "src": "https://beta.iwb.cocorobo.cn/"
  8978. })
  8979. _box.appendChild(_iframe);
  8980. _box.appendChild(_jie);
  8981. _formdiv = new U.UF.UI.form(
  8982. "电子白板-" + _username,
  8983. _box, {
  8984. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8985. "style": {
  8986. "width": "90%",
  8987. "height": "90%",
  8988. "overflow": 'hidden'
  8989. },
  8990. "onresize": function () { }
  8991. }, {
  8992. closecallback: function () { }
  8993. }, {
  8994. "style": {
  8995. "height": "36px"
  8996. }
  8997. }).form; //创建窗体
  8998. _taskbar = {
  8999. "id": str + _formdiv.id,
  9000. "style": {
  9001. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9002. },
  9003. "name": "电子白板",
  9004. "forms": _formdiv,
  9005. "click": function () {
  9006. U.MD.D.I.openApplication(str, obj, info);
  9007. }
  9008. }
  9009. break;
  9010. case "mind":
  9011. aTool = 3;
  9012. _iframe = $$("iframe", {
  9013. "frameborder": "no",
  9014. "border": "0",
  9015. "scrolling ": "no",
  9016. "style": {
  9017. "cssText": "border:0;width:100%;height:100%"
  9018. },
  9019. "src": "/kityminder-editor/dist/index.html"
  9020. })
  9021. _box.appendChild(_iframe);
  9022. _box.appendChild(_jie);
  9023. _formdiv = new U.UF.UI.form(
  9024. "思维导图-" + _username,
  9025. _box, { //"/jsmind/example/demo.html"
  9026. "id": "mind" + cid + stage + task + tool + _userid,
  9027. "style": {
  9028. "width": "90%",
  9029. "height": "90%",
  9030. "overflow": 'hidden'
  9031. },
  9032. "onresize": function () { }
  9033. }, {
  9034. closecallback: function () { }
  9035. }, {
  9036. "style": {
  9037. "height": "36px"
  9038. }
  9039. }).form; //创建窗体
  9040. _taskbar = {
  9041. "id": str + _formdiv.id,
  9042. "style": {
  9043. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9044. },
  9045. "name": "思维导图",
  9046. "forms": _formdiv,
  9047. "click": function () {
  9048. U.MD.D.I.openApplication(str, obj, info);
  9049. }
  9050. }
  9051. break;
  9052. case "MindMap":
  9053. aTool = 3;
  9054. _iframe = $$("iframe", {
  9055. "frameborder": "no",
  9056. "border": "0",
  9057. "scrolling ": "no",
  9058. "style": {
  9059. "cssText": "border:0;width:100%;height:100%"
  9060. },
  9061. "src": "//cloud.cocorobo.cn/mind/"
  9062. })
  9063. _box.appendChild(_iframe);
  9064. _box.appendChild(_jie);
  9065. _formdiv = new U.UF.UI.form(
  9066. "思维导图-" + _username,
  9067. _box, { //"/jsmind/example/demo.html"
  9068. "id": "mind" + cid + stage + task + tool + _userid,
  9069. "style": {
  9070. "width": "90%",
  9071. "height": "90%",
  9072. "overflow": 'hidden'
  9073. },
  9074. "onresize": function () { }
  9075. }, {
  9076. closecallback: function () { }
  9077. }, {
  9078. "style": {
  9079. "height": "36px"
  9080. }
  9081. }).form; //创建窗体
  9082. _taskbar = {
  9083. "id": str + _formdiv.id,
  9084. "style": {
  9085. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9086. },
  9087. "name": "思维导图",
  9088. "forms": _formdiv,
  9089. "click": function () {
  9090. U.MD.D.I.openApplication(str, obj, info);
  9091. }
  9092. }
  9093. break;
  9094. case "doc":
  9095. aTool = 6;
  9096. _iframe = $$("iframe", {
  9097. "frameborder": "no",
  9098. "border": "0",
  9099. "scrolling ": "no",
  9100. "style": {
  9101. "cssText": "border:0;width:100%;height:100%"
  9102. },
  9103. "src": "/Office/Word/WordEditArea.htm"
  9104. })
  9105. _box.appendChild(_iframe);
  9106. _box.appendChild(_jie);
  9107. _formdiv = new U.UF.UI.form(
  9108. "协同文档-" + _username,
  9109. _box, {
  9110. "id": "doc" + cid + stage + task + tool + _userid,
  9111. "style": {
  9112. "width": "90%",
  9113. "height": "90%",
  9114. "overflow": 'hidden'
  9115. },
  9116. "onresize": function () { }
  9117. }, {
  9118. closecallback: function () { }
  9119. }, {
  9120. "style": {
  9121. "height": "36px"
  9122. }
  9123. }).form; //创建窗体
  9124. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9125. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9126. })
  9127. _taskbar = {
  9128. "id": str + _formdiv.id,
  9129. "style": {
  9130. "backgroundImage": "url(/img/icon/doc.png)"
  9131. },
  9132. "name": "协同文档",
  9133. "forms": _formdiv,
  9134. "click": function () {
  9135. U.MD.D.I.openApplication(str, obj, info);
  9136. }
  9137. }
  9138. break;
  9139. case "mindNetwork": //好友打开
  9140. aTool = 7;
  9141. _iframe = $$("iframe", {
  9142. "webkitallowfullscreen": "",
  9143. "mozallowfullscreen": "",
  9144. "allowfullscreen": "",
  9145. "frameborder": "no",
  9146. "border": "0",
  9147. "scrolling ": "no",
  9148. "style": {
  9149. "cssText": "border:0; width:100%; height:100%;"
  9150. },
  9151. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9152. })
  9153. _box.appendChild(_iframe);
  9154. _box.appendChild(_jie);
  9155. _formdiv = new U.UF.UI.form(
  9156. "思维网格-" + _username,
  9157. _box, {
  9158. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9159. "style": {
  9160. "width": "90%",
  9161. "height": "90%",
  9162. "overflow": 'hidden'
  9163. },
  9164. "onresize": function () { }
  9165. }, {
  9166. closecallback: function () { }
  9167. }, {
  9168. "style": {
  9169. "height": "36px"
  9170. }
  9171. }).form; //创建窗体
  9172. _taskbar = {
  9173. "id": str + _formdiv.id,
  9174. "style": {
  9175. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9176. },
  9177. "name": "思维网格",
  9178. "forms": _formdiv,
  9179. "click": function () {
  9180. U.MD.D.I.openApplication(str, obj, info);
  9181. }
  9182. }
  9183. break;
  9184. case "courseDesign":
  9185. _iframe = $$("iframe", {
  9186. "webkitallowfullscreen": "",
  9187. "mozallowfullscreen": "",
  9188. "allowfullscreen": "",
  9189. "frameborder": "no",
  9190. "border": "0",
  9191. "scrolling ": "no",
  9192. "style": {
  9193. "cssText": "border:0; width:100%; height:100%;"
  9194. },
  9195. "src": "/course-design-vue"
  9196. })
  9197. _box.appendChild(_iframe);
  9198. _box.appendChild(_jie);
  9199. _formdiv = new U.UF.UI.form(
  9200. "项目设计-" + _username,
  9201. _box, {
  9202. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9203. "style": {
  9204. "width": "90%",
  9205. "height": "90%",
  9206. "overflow": 'hidden'
  9207. },
  9208. "onresize": function () { }
  9209. }, {
  9210. closecallback: function () { }
  9211. }, {
  9212. "style": {
  9213. "height": "36px"
  9214. }
  9215. }).form; //创建窗体
  9216. _taskbar = {
  9217. "id": str + _formdiv.id,
  9218. "style": {
  9219. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9220. },
  9221. "name": "项目设计",
  9222. "forms": _formdiv,
  9223. "click": function () {
  9224. U.MD.D.I.openApplication(str, obj, info);
  9225. }
  9226. }
  9227. break;
  9228. }
  9229. const script1 = document.createElement("script");
  9230. script1.type = "text/javascript";
  9231. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9232. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9233. const script2 = document.createElement("script");
  9234. script2.type = "text/javascript";
  9235. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9236. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9237. const script3 = document.createElement("script");
  9238. script3.type = "text/javascript";
  9239. script3.charset = "UTF-8";
  9240. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9241. const script4 = document.createElement("script");
  9242. script4.type = "text/javascript";
  9243. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9244. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9245. if (_iframe) {
  9246. if (str == 'doc') {
  9247. _iframe = _formdiv.querySelector('iframe')
  9248. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9249. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9250. _iframe.contentWindow.document.body.appendChild(script1);
  9251. _iframe.contentWindow.document.body.appendChild(script2);
  9252. // _iframe.contentWindow.document.body.appendChild(script3);
  9253. _iframe.contentWindow.document.body.appendChild(script4);
  9254. })
  9255. if (onloadListener) {
  9256. _iframe.contentDocument.location.reload()
  9257. } else {
  9258. _iframe.contentDocument.location.reload()
  9259. }
  9260. } else if (str == 'courseDesign') {
  9261. U.UF.DL.iframeLoad(_iframe, function () {
  9262. // _iframe.contentWindow.U.MD.O.W.load();
  9263. // _iframe.contentWindow.document.body.appendChild(script1);
  9264. _iframe.contentWindow.document.body.appendChild(script2);
  9265. _iframe.contentWindow.document.body.appendChild(script4);
  9266. })
  9267. } else if (str == 'mind') {
  9268. _iframe = _formdiv.querySelector('iframe')
  9269. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9270. //
  9271. _iframe.contentWindow.document.body.appendChild(script1);
  9272. _iframe.contentWindow.document.body.appendChild(script2);
  9273. _iframe.contentWindow.document.body.appendChild(script4);
  9274. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9275. })
  9276. if (onloadListener) {
  9277. _iframe.contentDocument.location.reload()
  9278. } else {
  9279. _iframe.contentDocument.location.reload()
  9280. }
  9281. } else if (str == 'whiteboard') {
  9282. _iframe = _formdiv.querySelector('iframe')
  9283. let onloadListener = _iframe.onload = () => {
  9284. _iframe.contentWindow.document.body.appendChild(script1);
  9285. _iframe.contentWindow.document.body.appendChild(script2);
  9286. _iframe.contentWindow.document.body.appendChild(script4);
  9287. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9288. };
  9289. // if (onloadListener) {
  9290. // try {
  9291. // _iframe.src += "?cocorobo="+new Date().getTime()
  9292. // _iframe.contentWindow.document.location.reload()
  9293. // } catch (error) {
  9294. // }
  9295. // } else {
  9296. // _iframe.contentDocument.location.reload()
  9297. // }
  9298. } else {
  9299. _iframe.onload = () => {
  9300. _iframe.contentWindow.document.body.appendChild(script1);
  9301. _iframe.contentWindow.document.body.appendChild(script2);
  9302. // _iframe.contentWindow.document.body.appendChild(script3);
  9303. _iframe.contentWindow.document.body.appendChild(script4);
  9304. };
  9305. }
  9306. _jie.onclick = async () => {
  9307. let text = ''
  9308. if (aTool == 1) {
  9309. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9310. } else if (aTool == 6) {
  9311. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9312. } else if (aTool == 3) {
  9313. text = await U.MD.D.I.getEditorContent(_iframe);
  9314. }
  9315. _loading.style.display = 'flex'
  9316. console.log(_loading);
  9317. var _ajs = _iframe.contentWindow.document.createElement("script");
  9318. _ajs.type = "text/javascript";
  9319. _ajs.innerHTML =
  9320. // 'console.log(' + _loading + ');\n' +
  9321. 'var _js = document.createElement("script");\n' +
  9322. '_js.type="text/javascript";\n' +
  9323. '_js.charset="UTF-8";\n' +
  9324. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9325. "_js.onload = function(){\n" +
  9326. ' var a = document.getElementsByTagName("img")\n' +
  9327. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9328. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9329. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9330. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9331. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9332. "beforeUpload_shishi(file," +
  9333. "'" +
  9334. _userid +
  9335. "'" +
  9336. ", " +
  9337. "'" +
  9338. _cid +
  9339. "'" +
  9340. ", " +
  9341. "'" +
  9342. _stage +
  9343. "'" +
  9344. ", " +
  9345. "'" +
  9346. _task +
  9347. "'" +
  9348. ", " +
  9349. "'" +
  9350. _tool +
  9351. "'" +
  9352. ", " +
  9353. "'" +
  9354. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9355. "'" +
  9356. ", " +
  9357. "'" +
  9358. aTool +
  9359. "'" +
  9360. ", " +
  9361. "`" +
  9362. text +
  9363. "`" +
  9364. ")\n" +
  9365. " });\n" +
  9366. "}\n" +
  9367. "document.head.appendChild(_js);\n";
  9368. _iframe.contentWindow.document.head.appendChild(_ajs);
  9369. }
  9370. }
  9371. }
  9372. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9373. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9374. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9375. _userid = student.userid, //登录用户id
  9376. _username = student.student //用户名字
  9377. let _iframe;
  9378. let _cid = cid,
  9379. _stage = stage,
  9380. _task = task,
  9381. _tool = tool;
  9382. var _jie = $$("div", {
  9383. "style": {
  9384. "position": "absolute",
  9385. "bottom": "50px",
  9386. "right": "50px",
  9387. "zIndex": "9999",
  9388. "backgroundColor": "#2268bc",
  9389. "color": "#fff",
  9390. "padding": "12px 20px",
  9391. "cursor": "pointer",
  9392. "borderRadius": "4px",
  9393. },
  9394. "innerHTML": "提交作业"
  9395. })
  9396. let aTool = ''
  9397. let _loading = document.createElement('div')
  9398. _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;"
  9399. // _loading.id = "";
  9400. let _lchild = document.createElement('div')
  9401. let _limg = document.createElement('img')
  9402. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9403. _limg.style = "width: 26px;margin-right: 10px;"
  9404. _lchild.appendChild(_limg)
  9405. let _lspan = document.createElement('span')
  9406. _lspan.innerHTML = "上传中..."
  9407. _lchild.appendChild(_lspan)
  9408. _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%);"
  9409. _loading.appendChild(_lchild)
  9410. var _box = $$('div', {
  9411. "style": {
  9412. "position": "relative",
  9413. "width": "100%",
  9414. "height": "100%",
  9415. },
  9416. })
  9417. _box.appendChild(_loading)
  9418. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9419. switch (str) {
  9420. case "whiteboard":
  9421. aTool = 1;
  9422. _iframe = $$("iframe", {
  9423. "frameborder": "no",
  9424. "border": "0",
  9425. "scrolling ": "no",
  9426. "style": {
  9427. "cssText": "border:0;width:100%;height:100%"
  9428. },
  9429. "src": "https://beta.iwb.cocorobo.cn/"
  9430. })
  9431. _box.appendChild(_iframe);
  9432. _box.appendChild(_jie);
  9433. _formdiv = new U.UF.UI.form(
  9434. "电子白板-" + _username,
  9435. _box, {
  9436. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9437. "style": {
  9438. "width": "90%",
  9439. "height": "90%",
  9440. "overflow": 'hidden'
  9441. },
  9442. "onresize": function () { }
  9443. }, {
  9444. closecallback: function () { }
  9445. }, {
  9446. "style": {
  9447. "height": "36px"
  9448. }
  9449. }).form; //创建窗体
  9450. _taskbar = {
  9451. "id": str + _formdiv.id,
  9452. "style": {
  9453. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9454. },
  9455. "name": "电子白板",
  9456. "forms": _formdiv,
  9457. "click": function () {
  9458. U.MD.D.I.openApplication(str, obj, info);
  9459. }
  9460. }
  9461. break;
  9462. case "mind":
  9463. aTool = 3;
  9464. _iframe = $$("iframe", {
  9465. "frameborder": "no",
  9466. "border": "0",
  9467. "scrolling ": "no",
  9468. "style": {
  9469. "cssText": "border:0;width:100%;height:100%"
  9470. },
  9471. "src": "/kityminder-editor/dist/index.html"
  9472. })
  9473. _box.appendChild(_iframe);
  9474. _box.appendChild(_jie);
  9475. _formdiv = new U.UF.UI.form(
  9476. "思维导图-" + _username,
  9477. _box, { //"/jsmind/example/demo.html"
  9478. "id": "mind" + cid + stage + task + tool + _userid,
  9479. "style": {
  9480. "width": "90%",
  9481. "height": "90%",
  9482. "overflow": 'hidden'
  9483. },
  9484. "onresize": function () { }
  9485. }, {
  9486. closecallback: function () { }
  9487. }, {
  9488. "style": {
  9489. "height": "36px"
  9490. }
  9491. }).form; //创建窗体
  9492. _taskbar = {
  9493. "id": str + _formdiv.id,
  9494. "style": {
  9495. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9496. },
  9497. "name": "思维导图",
  9498. "forms": _formdiv,
  9499. "click": function () {
  9500. U.MD.D.I.openApplication(str, obj, info);
  9501. }
  9502. }
  9503. break;
  9504. case "MindMap":
  9505. aTool = 3;
  9506. _iframe = $$("iframe", {
  9507. "frameborder": "no",
  9508. "border": "0",
  9509. "scrolling ": "no",
  9510. "style": {
  9511. "cssText": "border:0;width:100%;height:100%"
  9512. },
  9513. "src": "//cloud.cocorobo.cn/mind/"
  9514. })
  9515. _box.appendChild(_iframe);
  9516. _box.appendChild(_jie);
  9517. _formdiv = new U.UF.UI.form(
  9518. "思维导图-" + _username,
  9519. _box, { //"/jsmind/example/demo.html"
  9520. "id": "mind" + cid + stage + task + tool + _userid,
  9521. "style": {
  9522. "width": "90%",
  9523. "height": "90%",
  9524. "overflow": 'hidden'
  9525. },
  9526. "onresize": function () { }
  9527. }, {
  9528. closecallback: function () { }
  9529. }, {
  9530. "style": {
  9531. "height": "36px"
  9532. }
  9533. }).form; //创建窗体
  9534. _taskbar = {
  9535. "id": str + _formdiv.id,
  9536. "style": {
  9537. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9538. },
  9539. "name": "思维导图",
  9540. "forms": _formdiv,
  9541. "click": function () {
  9542. U.MD.D.I.openApplication(str, obj, info);
  9543. }
  9544. }
  9545. break;
  9546. case "doc":
  9547. aTool = 6;
  9548. _iframe = $$("iframe", {
  9549. "frameborder": "no",
  9550. "border": "0",
  9551. "scrolling ": "no",
  9552. "style": {
  9553. "cssText": "border:0;width:100%;height:100%"
  9554. },
  9555. "src": "/Office/Word/WordEditArea.htm"
  9556. })
  9557. _box.appendChild(_iframe);
  9558. _box.appendChild(_jie);
  9559. _formdiv = new U.UF.UI.form(
  9560. "协同文档-" + _username,
  9561. _box, {
  9562. "id": "doc" + cid + stage + task + tool + _userid,
  9563. "style": {
  9564. "width": "90%",
  9565. "height": "90%",
  9566. "overflow": 'hidden'
  9567. },
  9568. "onresize": function () { }
  9569. }, {
  9570. closecallback: function () { }
  9571. }, {
  9572. "style": {
  9573. "height": "36px"
  9574. }
  9575. }).form; //创建窗体
  9576. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9577. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9578. })
  9579. _taskbar = {
  9580. "id": str + _formdiv.id,
  9581. "style": {
  9582. "backgroundImage": "url(/img/icon/doc.png)"
  9583. },
  9584. "name": "协同文档",
  9585. "forms": _formdiv,
  9586. "click": function () {
  9587. U.MD.D.I.openApplication(str, obj, info);
  9588. }
  9589. }
  9590. break;
  9591. case "mindNetwork": //好友打开
  9592. aTool = 7;
  9593. _iframe = $$("iframe", {
  9594. "webkitallowfullscreen": "",
  9595. "mozallowfullscreen": "",
  9596. "allowfullscreen": "",
  9597. "frameborder": "no",
  9598. "border": "0",
  9599. "scrolling ": "no",
  9600. "style": {
  9601. "cssText": "border:0; width:100%; height:100%;"
  9602. },
  9603. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9604. })
  9605. _box.appendChild(_iframe);
  9606. _box.appendChild(_jie);
  9607. _formdiv = new U.UF.UI.form(
  9608. "思维网格-" + _username,
  9609. _box, {
  9610. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9611. "style": {
  9612. "width": "90%",
  9613. "height": "90%",
  9614. "overflow": 'hidden'
  9615. },
  9616. "onresize": function () { }
  9617. }, {
  9618. closecallback: function () { }
  9619. }, {
  9620. "style": {
  9621. "height": "36px"
  9622. }
  9623. }).form; //创建窗体
  9624. _taskbar = {
  9625. "id": str + _formdiv.id,
  9626. "style": {
  9627. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9628. },
  9629. "name": "思维网格",
  9630. "forms": _formdiv,
  9631. "click": function () {
  9632. U.MD.D.I.openApplication(str, obj, info);
  9633. }
  9634. }
  9635. break;
  9636. case "courseDesign":
  9637. _iframe = $$("iframe", {
  9638. "webkitallowfullscreen": "",
  9639. "mozallowfullscreen": "",
  9640. "allowfullscreen": "",
  9641. "frameborder": "no",
  9642. "border": "0",
  9643. "scrolling ": "no",
  9644. "style": {
  9645. "cssText": "border:0; width:100%; height:100%;"
  9646. },
  9647. "src": "/course-design-vue"
  9648. })
  9649. _box.appendChild(_iframe);
  9650. _box.appendChild(_jie);
  9651. _formdiv = new U.UF.UI.form(
  9652. "项目设计-" + _username,
  9653. _box, {
  9654. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9655. "style": {
  9656. "width": "90%",
  9657. "height": "90%",
  9658. "overflow": 'hidden'
  9659. },
  9660. "onresize": function () { }
  9661. }, {
  9662. closecallback: function () { }
  9663. }, {
  9664. "style": {
  9665. "height": "36px"
  9666. }
  9667. }).form; //创建窗体
  9668. _taskbar = {
  9669. "id": str + _formdiv.id,
  9670. "style": {
  9671. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9672. },
  9673. "name": "项目设计",
  9674. "forms": _formdiv,
  9675. "click": function () {
  9676. U.MD.D.I.openApplication(str, obj, info);
  9677. }
  9678. }
  9679. break;
  9680. }
  9681. const script1 = document.createElement("script");
  9682. script1.type = "text/javascript";
  9683. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9684. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9685. const script2 = document.createElement("script");
  9686. script2.type = "text/javascript";
  9687. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9688. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9689. const script3 = document.createElement("script");
  9690. script3.type = "text/javascript";
  9691. script3.charset = "UTF-8";
  9692. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9693. const script4 = document.createElement("script");
  9694. script4.type = "text/javascript";
  9695. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9696. script4.src = window.origin + "/js/Common/jietu2E.js";
  9697. if (_iframe) {
  9698. if (str == 'doc') {
  9699. _iframe = _formdiv.querySelector('iframe')
  9700. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9701. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9702. _iframe.contentWindow.document.body.appendChild(script1);
  9703. _iframe.contentWindow.document.body.appendChild(script2);
  9704. // _iframe.contentWindow.document.body.appendChild(script3);
  9705. _iframe.contentWindow.document.body.appendChild(script4);
  9706. })
  9707. if (onloadListener) {
  9708. _iframe.contentDocument.location.reload()
  9709. } else {
  9710. _iframe.contentDocument.location.reload()
  9711. }
  9712. } else if (str == 'courseDesign') {
  9713. U.UF.DL.iframeLoad(_iframe, function () {
  9714. // _iframe.contentWindow.U.MD.O.W.load();
  9715. // _iframe.contentWindow.document.body.appendChild(script1);
  9716. _iframe.contentWindow.document.body.appendChild(script2);
  9717. _iframe.contentWindow.document.body.appendChild(script4);
  9718. })
  9719. } else if (str == 'mind') {
  9720. _iframe = _formdiv.querySelector('iframe')
  9721. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9722. //
  9723. _iframe.contentWindow.document.body.appendChild(script1);
  9724. _iframe.contentWindow.document.body.appendChild(script2);
  9725. _iframe.contentWindow.document.body.appendChild(script4);
  9726. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9727. })
  9728. if (onloadListener) {
  9729. _iframe.contentDocument.location.reload()
  9730. } else {
  9731. _iframe.contentDocument.location.reload()
  9732. }
  9733. } else if (str == 'whiteboard') {
  9734. _iframe = _formdiv.querySelector('iframe')
  9735. let onloadListener = _iframe.onload = () => {
  9736. _iframe.contentWindow.document.body.appendChild(script1);
  9737. _iframe.contentWindow.document.body.appendChild(script2);
  9738. _iframe.contentWindow.document.body.appendChild(script4);
  9739. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9740. };
  9741. // if (onloadListener) {
  9742. // try {
  9743. // _iframe.src += "?cocorobo="+new Date().getTime()
  9744. // _iframe.contentWindow.document.location.reload()
  9745. // } catch (error) {
  9746. // }
  9747. // } else {
  9748. // _iframe.contentDocument.location.reload()
  9749. // }
  9750. } else {
  9751. _iframe.onload = () => {
  9752. _iframe.contentWindow.document.body.appendChild(script1);
  9753. _iframe.contentWindow.document.body.appendChild(script2);
  9754. // _iframe.contentWindow.document.body.appendChild(script3);
  9755. _iframe.contentWindow.document.body.appendChild(script4);
  9756. };
  9757. }
  9758. _jie.onclick = async () => {
  9759. let text = ''
  9760. if (aTool == 1) {
  9761. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9762. } else if (aTool == 6) {
  9763. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9764. } else if (aTool == 3) {
  9765. text = await U.MD.D.I.getEditorContent(_iframe);
  9766. }
  9767. _loading.style.display = 'flex'
  9768. console.log(_loading);
  9769. var _ajs = _iframe.contentWindow.document.createElement("script");
  9770. _ajs.type = "text/javascript";
  9771. _ajs.innerHTML =
  9772. // 'console.log(' + _loading + ');\n' +
  9773. 'var _js = document.createElement("script");\n' +
  9774. '_js.type="text/javascript";\n' +
  9775. '_js.charset="UTF-8";\n' +
  9776. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9777. "_js.onload = function(){\n" +
  9778. ' var a = document.getElementsByTagName("img")\n' +
  9779. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9780. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9781. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9782. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9783. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9784. "beforeUpload_shishi(file," +
  9785. "'" +
  9786. _userid +
  9787. "'" +
  9788. ", " +
  9789. "'" +
  9790. _cid +
  9791. "'" +
  9792. ", " +
  9793. "'" +
  9794. _stage +
  9795. "'" +
  9796. ", " +
  9797. "'" +
  9798. _task +
  9799. "'" +
  9800. ", " +
  9801. "'" +
  9802. _tool +
  9803. "'" +
  9804. ", " +
  9805. "'" +
  9806. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9807. "'" +
  9808. ", " +
  9809. "'" +
  9810. aTool +
  9811. "'" +
  9812. ", " +
  9813. "`" +
  9814. text +
  9815. "`" +
  9816. ")\n" +
  9817. " });\n" +
  9818. "}\n" +
  9819. "document.head.appendChild(_js);\n";
  9820. _iframe.contentWindow.document.head.appendChild(_ajs);
  9821. }
  9822. }
  9823. }
  9824. U.MD.D.I.getEditorContent = function (iframe) {
  9825. return new Promise((resolve, reject) => {
  9826. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9827. console.log(content);
  9828. resolve(content)
  9829. });
  9830. });
  9831. }
  9832. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9833. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9834. // if (res.value[0].length > 0) {
  9835. // // resolve(res.value[0][0].text);
  9836. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9837. // $(fileInput).val('');
  9838. // });
  9839. // }
  9840. // }, [], { "type": "GET", "withCredentials": true });
  9841. var xmlhttp;
  9842. var Mac, Sn, DeviceId
  9843. if (window.XMLHttpRequest) {
  9844. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9845. xmlhttp = new XMLHttpRequest();
  9846. } else {
  9847. // IE6, IE5 浏览器执行代码
  9848. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9849. }
  9850. xmlhttp.onreadystatechange = function () {
  9851. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9852. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9853. // resolve(res.value[0][0].text);
  9854. if (type == '2') {
  9855. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9856. } else if (type == '3') {
  9857. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9858. }
  9859. } else {
  9860. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9861. }
  9862. }
  9863. }
  9864. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9865. xmlhttp.send();
  9866. }
  9867. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9868. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9869. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9870. _userinfo = US.userInfo, //登录用户信息
  9871. _userid = US.userInfo.userid //登录用户id
  9872. let _iframe;
  9873. let _cid = cid,
  9874. _stage = stage,
  9875. _task = task,
  9876. _tool = tool;
  9877. var _jie = $$("div", {
  9878. "style": {
  9879. "position": "absolute",
  9880. "bottom": "50px",
  9881. "right": "50px",
  9882. "zIndex": "9999",
  9883. "backgroundColor": "#2268bc",
  9884. "color": "#fff",
  9885. "padding": "12px 20px",
  9886. "cursor": "pointer",
  9887. "borderRadius": "4px",
  9888. },
  9889. "innerHTML": "确认并提交"
  9890. })
  9891. let aTool = ''
  9892. let _loading = document.createElement('div')
  9893. _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;"
  9894. // _loading.id = "";
  9895. let _lchild = document.createElement('div')
  9896. let _limg = document.createElement('img')
  9897. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9898. _limg.style = "width: 26px;margin-right: 10px;"
  9899. _lchild.appendChild(_limg)
  9900. let _lspan = document.createElement('span')
  9901. _lspan.innerHTML = "上传中..."
  9902. _lchild.appendChild(_lspan)
  9903. _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%);"
  9904. _loading.appendChild(_lchild)
  9905. var _box = $$('div', {
  9906. "style": {
  9907. "position": "relative",
  9908. "width": "100%",
  9909. "height": "100%",
  9910. },
  9911. })
  9912. _box.appendChild(_loading)
  9913. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9914. switch (str) {
  9915. case "whiteboard":
  9916. aTool = 1;
  9917. _iframe = $$("iframe", {
  9918. "frameborder": "no",
  9919. "border": "0",
  9920. "scrolling ": "no",
  9921. "style": {
  9922. "cssText": "border:0;width:100%;height:100%"
  9923. },
  9924. "src": "https://beta.iwb.cocorobo.cn/"
  9925. })
  9926. _box.appendChild(_iframe);
  9927. _box.appendChild(_jie);
  9928. _formdiv = new U.UF.UI.form(
  9929. "电子白板",
  9930. _box, {
  9931. "id": "whiteboards" + cid + stage + task + tool,
  9932. "style": {
  9933. "width": "90%",
  9934. "height": "90%",
  9935. "overflow": 'hidden'
  9936. },
  9937. "onresize": function () { }
  9938. }, {
  9939. closecallback: function () { }
  9940. }, {
  9941. "style": {
  9942. "height": "36px"
  9943. }
  9944. }).form; //创建窗体
  9945. _taskbar = {
  9946. "id": str + _formdiv.id,
  9947. "style": {
  9948. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9949. },
  9950. "name": "电子白板",
  9951. "forms": _formdiv,
  9952. "click": function () {
  9953. U.MD.D.I.openApplication(str, obj, info);
  9954. }
  9955. }
  9956. break;
  9957. case "mind":
  9958. aTool = 3;
  9959. _iframe = $$("iframe", {
  9960. "frameborder": "no",
  9961. "border": "0",
  9962. "scrolling ": "no",
  9963. "style": {
  9964. "cssText": "border:0;width:100%;height:100%"
  9965. },
  9966. "src": "/kityminder-editor/dist/index.html"
  9967. });
  9968. _box.appendChild(_iframe);
  9969. _box.appendChild(_jie);
  9970. _formdiv = new U.UF.UI.form(
  9971. "思维导图",
  9972. _box, { //"/jsmind/example/demo.html"
  9973. "id": "minds" + cid + stage + task + tool,
  9974. "style": {
  9975. "width": "90%",
  9976. "height": "90%",
  9977. "overflow": 'hidden'
  9978. },
  9979. "onresize": function () { }
  9980. }, {
  9981. closecallback: function () { }
  9982. }, {
  9983. "style": {
  9984. "height": "36px"
  9985. }
  9986. }).form; //创建窗体
  9987. _taskbar = {
  9988. "id": str + _formdiv.id,
  9989. "style": {
  9990. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9991. },
  9992. "name": "思维导图",
  9993. "forms": _formdiv,
  9994. "click": function () {
  9995. U.MD.D.I.openApplication(str, obj, info);
  9996. }
  9997. }
  9998. break;
  9999. case "doc":
  10000. aTool = 6;
  10001. _iframe = $$("iframe", {
  10002. "frameborder": "no",
  10003. "border": "0",
  10004. "scrolling ": "no",
  10005. "style": {
  10006. "cssText": "border:0;width:100%;height:100%"
  10007. },
  10008. "src": "/Office/Word/WordEditArea.htm"
  10009. })
  10010. _box.appendChild(_iframe);
  10011. _box.appendChild(_jie);
  10012. _formdiv = new U.UF.UI.form(
  10013. "协同文档",
  10014. _box, {
  10015. "id": "docs" + cid + stage + task + tool,
  10016. "style": {
  10017. "width": "90%",
  10018. "height": "90%",
  10019. "overflow": 'hidden'
  10020. },
  10021. "onresize": function () { }
  10022. }, {
  10023. closecallback: function () { }
  10024. }, {
  10025. "style": {
  10026. "height": "36px"
  10027. }
  10028. }).form; //创建窗体
  10029. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10030. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10031. })
  10032. _taskbar = {
  10033. "id": str + _formdiv.id,
  10034. "style": {
  10035. "backgroundImage": "url(/img/icon/doc.png)"
  10036. },
  10037. "name": "协同文档",
  10038. "forms": _formdiv,
  10039. "click": function () {
  10040. U.MD.D.I.openApplication(str, obj, info);
  10041. }
  10042. }
  10043. break;
  10044. }
  10045. const script1 = document.createElement("script");
  10046. script1.type = "text/javascript";
  10047. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10048. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10049. const script2 = document.createElement("script");
  10050. script2.type = "text/javascript";
  10051. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10052. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10053. const script3 = document.createElement("script");
  10054. script3.type = "text/javascript";
  10055. script3.charset = "UTF-8";
  10056. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10057. const script4 = document.createElement("script");
  10058. script4.type = "text/javascript";
  10059. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10060. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10061. if (_iframe) {
  10062. if (str == 'doc') {
  10063. _iframe = _formdiv.querySelector('iframe')
  10064. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10065. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10066. _iframe.contentWindow.document.body.appendChild(script1);
  10067. _iframe.contentWindow.document.body.appendChild(script2);
  10068. // _iframe.contentWindow.document.body.appendChild(script3);
  10069. _iframe.contentWindow.document.body.appendChild(script4);
  10070. })
  10071. if (onloadListener) {
  10072. _iframe.contentDocument.location.reload()
  10073. } else {
  10074. _iframe.contentDocument.location.reload()
  10075. }
  10076. } else if (str == 'mind') {
  10077. _iframe = _formdiv.querySelector('iframe')
  10078. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10079. _iframe.contentWindow.document.body.appendChild(script1);
  10080. _iframe.contentWindow.document.body.appendChild(script2);
  10081. _iframe.contentWindow.document.body.appendChild(script4);
  10082. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10083. })
  10084. if (onloadListener) {
  10085. _iframe.contentDocument.location.reload()
  10086. } else {
  10087. _iframe.contentDocument.location.reload()
  10088. }
  10089. } else {
  10090. _iframe.onload = () => {
  10091. _iframe.contentWindow.document.body.appendChild(script1);
  10092. _iframe.contentWindow.document.body.appendChild(script2);
  10093. // _iframe.contentWindow.document.body.appendChild(script3);
  10094. _iframe.contentWindow.document.body.appendChild(script4);
  10095. };
  10096. }
  10097. _jie.onclick = async () => {
  10098. let text = ''
  10099. if (aTool == 6) {
  10100. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10101. } else if (aTool == 3) {
  10102. text = await U.MD.D.I.getEditorContent(_iframe);
  10103. }
  10104. _loading.style.display = 'flex'
  10105. console.log(_loading);
  10106. var _ajs = _iframe.contentWindow.document.createElement("script");
  10107. _ajs.type = "text/javascript";
  10108. _ajs.innerHTML =
  10109. // 'console.log(' + _loading + ');\n' +
  10110. 'var _js = document.createElement("script");\n' +
  10111. '_js.type="text/javascript";\n' +
  10112. '_js.charset="UTF-8";\n' +
  10113. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10114. "_js.onload = function(){\n" +
  10115. ' var a = document.getElementsByTagName("img")\n' +
  10116. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10117. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10118. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10119. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10120. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10121. "beforeUpload_shishi(file," +
  10122. "'" +
  10123. _userid +
  10124. "'" +
  10125. ", " +
  10126. "'" +
  10127. _cid +
  10128. "'" +
  10129. ", " +
  10130. "'" +
  10131. _stage +
  10132. "'" +
  10133. ", " +
  10134. "'" +
  10135. _task +
  10136. "'" +
  10137. ", " +
  10138. "'" +
  10139. _tool +
  10140. "'" +
  10141. ", " +
  10142. "'" +
  10143. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10144. "'" +
  10145. ", " +
  10146. "'" +
  10147. aTool +
  10148. "'" +
  10149. ", " +
  10150. "`" +
  10151. text +
  10152. "`" +
  10153. ")\n" +
  10154. " });\n" +
  10155. "}\n" +
  10156. "document.head.appendChild(_js);\n";
  10157. _iframe.contentWindow.document.head.appendChild(_ajs);
  10158. }
  10159. }
  10160. //U.MD.D.I.openClick(str);
  10161. //如果有任务栏信息
  10162. // if (_taskbar) {
  10163. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10164. // }
  10165. }
  10166. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10167. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10168. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10169. _userinfo = US.userInfo, //登录用户信息
  10170. _userid = US.userInfo.userid //登录用户id
  10171. let _iframe;
  10172. let _cid = cid,
  10173. _stage = stage,
  10174. _task = task,
  10175. _tool = tool;
  10176. var _jie = $$("div", {
  10177. "style": {
  10178. "position": "absolute",
  10179. "bottom": "50px",
  10180. "right": "50px",
  10181. "zIndex": "9999",
  10182. "backgroundColor": "#2268bc",
  10183. "color": "#fff",
  10184. "padding": "12px 20px",
  10185. "cursor": "pointer",
  10186. "borderRadius": "4px",
  10187. },
  10188. "innerHTML": "确认并提交"
  10189. })
  10190. let aTool = ''
  10191. let _loading = document.createElement('div')
  10192. _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;"
  10193. // _loading.id = "";
  10194. let _lchild = document.createElement('div')
  10195. let _limg = document.createElement('img')
  10196. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10197. _limg.style = "width: 26px;margin-right: 10px;"
  10198. _lchild.appendChild(_limg)
  10199. let _lspan = document.createElement('span')
  10200. _lspan.innerHTML = "上传中..."
  10201. _lchild.appendChild(_lspan)
  10202. _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%);"
  10203. _loading.appendChild(_lchild)
  10204. var _box = $$('div', {
  10205. "style": {
  10206. "position": "relative",
  10207. "width": "100%",
  10208. "height": "100%",
  10209. },
  10210. })
  10211. _box.appendChild(_loading)
  10212. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10213. switch (str) {
  10214. case "whiteboard":
  10215. aTool = 1;
  10216. _iframe = $$("iframe", {
  10217. "frameborder": "no",
  10218. "border": "0",
  10219. "scrolling ": "no",
  10220. "style": {
  10221. "cssText": "border:0;width:100%;height:100%"
  10222. },
  10223. "src": "https://beta.iwb.cocorobo.cn/"
  10224. })
  10225. _box.appendChild(_iframe);
  10226. _box.appendChild(_jie);
  10227. _formdiv = new U.UF.UI.form(
  10228. "电子白板",
  10229. _box, {
  10230. "id": "whiteboards" + cid + stage + task + tool,
  10231. "style": {
  10232. "width": "90%",
  10233. "height": "90%",
  10234. "overflow": 'hidden'
  10235. },
  10236. "onresize": function () { }
  10237. }, {
  10238. closecallback: function () { }
  10239. }, {
  10240. "style": {
  10241. "height": "36px"
  10242. }
  10243. }).form; //创建窗体
  10244. _taskbar = {
  10245. "id": str + _formdiv.id,
  10246. "style": {
  10247. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10248. },
  10249. "name": "电子白板",
  10250. "forms": _formdiv,
  10251. "click": function () {
  10252. U.MD.D.I.openApplication(str, obj, info);
  10253. }
  10254. }
  10255. break;
  10256. case "mind":
  10257. aTool = 3;
  10258. _iframe = $$("iframe", {
  10259. "frameborder": "no",
  10260. "border": "0",
  10261. "scrolling ": "no",
  10262. "style": {
  10263. "cssText": "border:0;width:100%;height:100%"
  10264. },
  10265. "src": "/kityminder-editor/dist/index.html"
  10266. });
  10267. _box.appendChild(_iframe);
  10268. _box.appendChild(_jie);
  10269. _formdiv = new U.UF.UI.form(
  10270. "思维导图",
  10271. _box, { //"/jsmind/example/demo.html"
  10272. "id": "minds" + cid + stage + task + tool,
  10273. "style": {
  10274. "width": "90%",
  10275. "height": "90%",
  10276. "overflow": 'hidden'
  10277. },
  10278. "onresize": function () { }
  10279. }, {
  10280. closecallback: function () { }
  10281. }, {
  10282. "style": {
  10283. "height": "36px"
  10284. }
  10285. }).form; //创建窗体
  10286. _taskbar = {
  10287. "id": str + _formdiv.id,
  10288. "style": {
  10289. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10290. },
  10291. "name": "思维导图",
  10292. "forms": _formdiv,
  10293. "click": function () {
  10294. U.MD.D.I.openApplication(str, obj, info);
  10295. }
  10296. }
  10297. break;
  10298. case "doc":
  10299. aTool = 6;
  10300. _iframe = $$("iframe", {
  10301. "frameborder": "no",
  10302. "border": "0",
  10303. "scrolling ": "no",
  10304. "style": {
  10305. "cssText": "border:0;width:100%;height:100%"
  10306. },
  10307. "src": "/Office/Word/WordEditArea.htm"
  10308. })
  10309. _box.appendChild(_iframe);
  10310. _box.appendChild(_jie);
  10311. _formdiv = new U.UF.UI.form(
  10312. "协同文档",
  10313. _box, {
  10314. "id": "docs" + cid + stage + task + tool,
  10315. "style": {
  10316. "width": "90%",
  10317. "height": "90%",
  10318. "overflow": 'hidden'
  10319. },
  10320. "onresize": function () { }
  10321. }, {
  10322. closecallback: function () { }
  10323. }, {
  10324. "style": {
  10325. "height": "36px"
  10326. }
  10327. }).form; //创建窗体
  10328. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10329. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10330. })
  10331. _taskbar = {
  10332. "id": str + _formdiv.id,
  10333. "style": {
  10334. "backgroundImage": "url(/img/icon/doc.png)"
  10335. },
  10336. "name": "协同文档",
  10337. "forms": _formdiv,
  10338. "click": function () {
  10339. U.MD.D.I.openApplication(str, obj, info);
  10340. }
  10341. }
  10342. break;
  10343. }
  10344. const script1 = document.createElement("script");
  10345. script1.type = "text/javascript";
  10346. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10347. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10348. const script2 = document.createElement("script");
  10349. script2.type = "text/javascript";
  10350. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10351. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10352. const script3 = document.createElement("script");
  10353. script3.type = "text/javascript";
  10354. script3.charset = "UTF-8";
  10355. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10356. const script4 = document.createElement("script");
  10357. script4.type = "text/javascript";
  10358. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10359. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10360. if (_iframe) {
  10361. if (str == 'doc') {
  10362. _iframe = _formdiv.querySelector('iframe')
  10363. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10364. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10365. _iframe.contentWindow.document.body.appendChild(script1);
  10366. _iframe.contentWindow.document.body.appendChild(script2);
  10367. // _iframe.contentWindow.document.body.appendChild(script3);
  10368. _iframe.contentWindow.document.body.appendChild(script4);
  10369. })
  10370. if (onloadListener) {
  10371. _iframe.contentDocument.location.reload()
  10372. } else {
  10373. _iframe.contentDocument.location.reload()
  10374. }
  10375. } else if (str == 'mind') {
  10376. _iframe = _formdiv.querySelector('iframe')
  10377. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10378. _iframe.contentWindow.document.body.appendChild(script1);
  10379. _iframe.contentWindow.document.body.appendChild(script2);
  10380. _iframe.contentWindow.document.body.appendChild(script4);
  10381. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10382. })
  10383. if (onloadListener) {
  10384. _iframe.contentDocument.location.reload()
  10385. } else {
  10386. _iframe.contentDocument.location.reload()
  10387. }
  10388. } else {
  10389. _iframe.onload = () => {
  10390. _iframe.contentWindow.document.body.appendChild(script1);
  10391. _iframe.contentWindow.document.body.appendChild(script2);
  10392. // _iframe.contentWindow.document.body.appendChild(script3);
  10393. _iframe.contentWindow.document.body.appendChild(script4);
  10394. };
  10395. }
  10396. _jie.onclick = async () => {
  10397. let text = ''
  10398. if (aTool == 6) {
  10399. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10400. } else if (aTool == 3) {
  10401. text = await U.MD.D.I.getEditorContent(_iframe);
  10402. }
  10403. _loading.style.display = 'flex'
  10404. console.log(_loading);
  10405. var _ajs = _iframe.contentWindow.document.createElement("script");
  10406. _ajs.type = "text/javascript";
  10407. _ajs.innerHTML =
  10408. // 'console.log(' + _loading + ');\n' +
  10409. 'var _js = document.createElement("script");\n' +
  10410. '_js.type="text/javascript";\n' +
  10411. '_js.charset="UTF-8";\n' +
  10412. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10413. "_js.onload = function(){\n" +
  10414. ' var a = document.getElementsByTagName("img")\n' +
  10415. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10416. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10417. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10418. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10419. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10420. "beforeUpload_shishi(file," +
  10421. "'" +
  10422. _userid +
  10423. "'" +
  10424. ", " +
  10425. "'" +
  10426. _cid +
  10427. "'" +
  10428. ", " +
  10429. "'" +
  10430. _stage +
  10431. "'" +
  10432. ", " +
  10433. "'" +
  10434. _task +
  10435. "'" +
  10436. ", " +
  10437. "'" +
  10438. _tool +
  10439. "'" +
  10440. ", " +
  10441. "'" +
  10442. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10443. "'" +
  10444. ", " +
  10445. "'" +
  10446. aTool +
  10447. "'" +
  10448. ", " +
  10449. "`" +
  10450. text +
  10451. "`" +
  10452. ")\n" +
  10453. " });\n" +
  10454. "}\n" +
  10455. "document.head.appendChild(_js);\n";
  10456. _iframe.contentWindow.document.head.appendChild(_ajs);
  10457. }
  10458. }
  10459. //U.MD.D.I.openClick(str);
  10460. //如果有任务栏信息
  10461. // if (_taskbar) {
  10462. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10463. // }
  10464. }
  10465. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10466. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10467. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10468. _userinfo = US.userInfo, //登录用户信息
  10469. _userid = US.userInfo.userid //登录用户id
  10470. let _iframe;
  10471. let _cid = cid,
  10472. _stage = stage,
  10473. _task = task,
  10474. _tool = tool;
  10475. var _jie = $$("div", {
  10476. "style": {
  10477. "position": "absolute",
  10478. "bottom": "50px",
  10479. "right": "50px",
  10480. "zIndex": "9999",
  10481. "backgroundColor": "#2268bc",
  10482. "color": "#fff",
  10483. "padding": "12px 20px",
  10484. "cursor": "pointer",
  10485. "borderRadius": "4px",
  10486. },
  10487. "innerHTML": "上传模板"
  10488. })
  10489. let aTool = ''
  10490. let _loading = document.createElement('div')
  10491. _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;"
  10492. // _loading.id = "";
  10493. let _lchild = document.createElement('div')
  10494. let _limg = document.createElement('img')
  10495. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10496. _limg.style = "width: 26px;margin-right: 10px;"
  10497. _lchild.appendChild(_limg)
  10498. let _lspan = document.createElement('span')
  10499. _lspan.innerHTML = "上传中..."
  10500. _lchild.appendChild(_lspan)
  10501. _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%);"
  10502. _loading.appendChild(_lchild)
  10503. var _box = $$('div', {
  10504. "style": {
  10505. "position": "relative",
  10506. "width": "100%",
  10507. "height": "100%",
  10508. },
  10509. })
  10510. _box.appendChild(_loading)
  10511. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10512. switch (str) {
  10513. case "whiteboard":
  10514. aTool = 1;
  10515. _iframe = $$("iframe", {
  10516. "frameborder": "no",
  10517. "border": "0",
  10518. "scrolling ": "no",
  10519. "style": {
  10520. "cssText": "border:0;width:100%;height:100%"
  10521. },
  10522. "src": "https://beta.iwb.cocorobo.cn/"
  10523. })
  10524. _box.appendChild(_iframe);
  10525. _box.appendChild(_jie);
  10526. _formdiv = new U.UF.UI.form(
  10527. "电子白板",
  10528. _box, {
  10529. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10530. "style": {
  10531. "width": "90%",
  10532. "height": "90%",
  10533. "overflow": 'hidden'
  10534. },
  10535. "onresize": function () { }
  10536. }, {
  10537. closecallback: function () { }
  10538. }, {
  10539. "style": {
  10540. "height": "36px"
  10541. }
  10542. }).form; //创建窗体
  10543. _taskbar = {
  10544. "id": str + _formdiv.id,
  10545. "style": {
  10546. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10547. },
  10548. "name": "电子白板",
  10549. "forms": _formdiv,
  10550. "click": function () {
  10551. U.MD.D.I.openApplication(str, obj, info);
  10552. }
  10553. }
  10554. break;
  10555. case "mind":
  10556. aTool = 3;
  10557. _iframe = $$("iframe", {
  10558. "frameborder": "no",
  10559. "border": "0",
  10560. "scrolling ": "no",
  10561. "style": {
  10562. "cssText": "border:0;width:100%;height:100%"
  10563. },
  10564. "src": "/kityminder-editor/dist/index.html"
  10565. });
  10566. _box.appendChild(_iframe);
  10567. _box.appendChild(_jie);
  10568. _formdiv = new U.UF.UI.form(
  10569. "思维导图",
  10570. _box, { //"/jsmind/example/demo.html"
  10571. "id": "minds_Yu" + cid + stage + task + tool,
  10572. "style": {
  10573. "width": "90%",
  10574. "height": "90%",
  10575. "overflow": 'hidden'
  10576. },
  10577. "onresize": function () { }
  10578. }, {
  10579. closecallback: function () { }
  10580. }, {
  10581. "style": {
  10582. "height": "36px"
  10583. }
  10584. }).form; //创建窗体
  10585. _taskbar = {
  10586. "id": str + _formdiv.id,
  10587. "style": {
  10588. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10589. },
  10590. "name": "思维导图",
  10591. "forms": _formdiv,
  10592. "click": function () {
  10593. U.MD.D.I.openApplication(str, obj, info);
  10594. }
  10595. }
  10596. break;
  10597. case "doc":
  10598. aTool = 6;
  10599. _iframe = $$("iframe", {
  10600. "frameborder": "no",
  10601. "border": "0",
  10602. "scrolling ": "no",
  10603. "style": {
  10604. "cssText": "border:0;width:100%;height:100%"
  10605. },
  10606. "src": "/Office/Word/WordEditArea.htm"
  10607. })
  10608. _box.appendChild(_iframe);
  10609. _box.appendChild(_jie);
  10610. _formdiv = new U.UF.UI.form(
  10611. "协同文档",
  10612. _box, {
  10613. "id": "docs_Yu" + cid + stage + task + tool,
  10614. "style": {
  10615. "width": "90%",
  10616. "height": "90%",
  10617. "overflow": 'hidden'
  10618. },
  10619. "onresize": function () { }
  10620. }, {
  10621. closecallback: function () { }
  10622. }, {
  10623. "style": {
  10624. "height": "36px"
  10625. }
  10626. }).form; //创建窗体
  10627. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10628. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10629. })
  10630. _taskbar = {
  10631. "id": str + _formdiv.id,
  10632. "style": {
  10633. "backgroundImage": "url(/img/icon/doc.png)"
  10634. },
  10635. "name": "协同文档",
  10636. "forms": _formdiv,
  10637. "click": function () {
  10638. U.MD.D.I.openApplication(str, obj, info);
  10639. }
  10640. }
  10641. break;
  10642. case "CocoPi":
  10643. aTool = 57;
  10644. _iframe = $$("iframe", {
  10645. "allowpaymentrequest": "allowpaymentrequest",
  10646. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10647. "webkitallowfullscreen": "",
  10648. "mozallowfullscreen": "",
  10649. "frameborder": "no",
  10650. "border": "0",
  10651. "scrolling ": "no",
  10652. "style": {
  10653. "cssText": "border:0;width:100%;height:100%"
  10654. },
  10655. "src": "https://pi.cocorobo.cn/"
  10656. })
  10657. _box.appendChild(_iframe);
  10658. _box.appendChild(_jie);
  10659. _formdiv = new U.UF.UI.form(
  10660. "CocoPi",
  10661. _box, {
  10662. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10663. "style": {
  10664. "width": "90%",
  10665. "height": "90%",
  10666. "overflow": 'hidden'
  10667. },
  10668. "onresize": function () { }
  10669. }, {
  10670. closecallback: function () { }
  10671. }, {
  10672. "style": {
  10673. "height": "36px"
  10674. }
  10675. }).form; //创建窗体
  10676. _taskbar = {
  10677. "id": str + _formdiv.id,
  10678. "style": {
  10679. "backgroundImage": "url(/img/icon/cocopi.png)"
  10680. },
  10681. "name": "CocoPi",
  10682. "forms": _formdiv,
  10683. "click": function () {
  10684. U.MD.D.I.openApplication(str, obj, info);
  10685. }
  10686. }
  10687. break;
  10688. }
  10689. if (_iframe) {
  10690. if (str == 'doc') {
  10691. _iframe = _formdiv.querySelector('iframe')
  10692. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10693. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10694. })
  10695. if (onloadListener) {
  10696. _iframe.contentDocument.location.reload()
  10697. } else {
  10698. _iframe.contentDocument.location.reload()
  10699. }
  10700. } else if (str == 'mind') {
  10701. _iframe = _formdiv.querySelector('iframe')
  10702. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10703. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10704. })
  10705. if (onloadListener) {
  10706. _iframe.contentDocument.location.reload()
  10707. } else {
  10708. _iframe.contentDocument.location.reload()
  10709. }
  10710. } else if (str == 'whiteboard') {
  10711. _iframe = _formdiv.querySelector('iframe')
  10712. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10713. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10714. })
  10715. // if (onloadListener) {
  10716. // try {
  10717. // _iframe.src += "?cocorobo="+new Date().getTime()
  10718. // _iframe.contentWindow.document.location.reload()
  10719. // } catch (error) {
  10720. // }
  10721. // } else {
  10722. // _iframe.contentDocument.location.reload()
  10723. // }
  10724. } else if (str == 'CocoPi') {
  10725. _iframe = _formdiv.querySelector('iframe')
  10726. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10727. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10728. })
  10729. if (onloadListener) {
  10730. _iframe.contentDocument.location.reload()
  10731. } else {
  10732. _iframe.contentDocument.location.reload()
  10733. }
  10734. } else {
  10735. _iframe.onload = () => { };
  10736. }
  10737. _jie.onclick = async () => {
  10738. let text = ''
  10739. let type = '2'
  10740. if (aTool == 1) {
  10741. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10742. type = '3'
  10743. } else if (aTool == 6) {
  10744. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10745. type = '1'
  10746. } else if (aTool == 3) {
  10747. text = await U.MD.D.I.getEditorContent(_iframe);
  10748. type = '2'
  10749. } else if (aTool == 57) {
  10750. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10751. type = '4'
  10752. }
  10753. _loading.style.display = 'flex'
  10754. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10755. }
  10756. }
  10757. //U.MD.D.I.openClick(str);
  10758. //如果有任务栏信息
  10759. // if (_taskbar) {
  10760. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10761. // }
  10762. }
  10763. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10764. var xmlhttp;
  10765. var Mac, Sn, DeviceId
  10766. if (window.XMLHttpRequest) {
  10767. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10768. xmlhttp = new XMLHttpRequest();
  10769. } else {
  10770. // IE6, IE5 浏览器执行代码
  10771. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10772. }
  10773. xmlhttp.onreadystatechange = function () {
  10774. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10775. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10776. // resolve(res.value[0][0].text);
  10777. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10778. }
  10779. }
  10780. }
  10781. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10782. xmlhttp.send();
  10783. }
  10784. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10785. var xmlhttp;
  10786. var Mac, Sn, DeviceId
  10787. if (window.XMLHttpRequest) {
  10788. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10789. xmlhttp = new XMLHttpRequest();
  10790. } else {
  10791. // IE6, IE5 浏览器执行代码
  10792. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10793. }
  10794. xmlhttp.onreadystatechange = function () {
  10795. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10796. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10797. // resolve(res.value[0][0].text);
  10798. if (type == '2') {
  10799. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10800. } else if (type == '3') {
  10801. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10802. } else if (type == '4') {
  10803. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10804. }
  10805. } else {
  10806. if (type == '2') {
  10807. iframe.contentWindow.editor.minder.importData('json', '')
  10808. } else if (type == '3') {
  10809. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10810. } else if (type == '4') {
  10811. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10812. }
  10813. }
  10814. }
  10815. }
  10816. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10817. xmlhttp.send();
  10818. }
  10819. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10820. var xmlhttp;
  10821. var Mac, Sn, DeviceId
  10822. if (window.XMLHttpRequest) {
  10823. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10824. xmlhttp = new XMLHttpRequest();
  10825. } else {
  10826. // IE6, IE5 浏览器执行代码
  10827. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10828. }
  10829. xmlhttp.onreadystatechange = function () {
  10830. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10831. if (xmlhttp.response) {
  10832. // resolve(res.value[0][0].text);
  10833. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10834. // $(fileInput).val('');
  10835. // });
  10836. span.innerHTML = '上传成功'
  10837. setTimeout(() => {
  10838. loading.style.display = 'none'
  10839. }, 1000);
  10840. }
  10841. }
  10842. }
  10843. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10844. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10845. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10846. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10847. // 设置请求头,表示请求体的编码格式
  10848. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10849. // 设置请求体,使用url-encoded格式的数据
  10850. }
  10851. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10852. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10853. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10854. _userinfo = US.userInfo, //登录用户信息
  10855. _userid = US.userInfo.userid //登录用户id
  10856. let _iframe;
  10857. let _cid = cid,
  10858. _stage = stage,
  10859. _task = task,
  10860. _tool = tool;
  10861. var _jie = $$("div", {
  10862. "style": {
  10863. "position": "absolute",
  10864. "bottom": "50px",
  10865. "right": "50px",
  10866. "zIndex": "9999",
  10867. "backgroundColor": "#2268bc",
  10868. "color": "#fff",
  10869. "padding": "12px 20px",
  10870. "cursor": "pointer",
  10871. "borderRadius": "4px",
  10872. },
  10873. "innerHTML": "提交作业"
  10874. })
  10875. let aTool = ''
  10876. let _loading = document.createElement('div')
  10877. _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;"
  10878. // _loading.id = "";
  10879. let _lchild = document.createElement('div')
  10880. let _limg = document.createElement('img')
  10881. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10882. _limg.style = "width: 26px;margin-right: 10px;"
  10883. _lchild.appendChild(_limg)
  10884. let _lspan = document.createElement('span')
  10885. _lspan.innerHTML = "上传中..."
  10886. _lchild.appendChild(_lspan)
  10887. _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%);"
  10888. _loading.appendChild(_lchild)
  10889. var _box = $$('div', {
  10890. "style": {
  10891. "position": "relative",
  10892. "width": "100%",
  10893. "height": "100%",
  10894. },
  10895. })
  10896. _box.appendChild(_loading)
  10897. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10898. switch (str) {
  10899. case "CocoPi":
  10900. aTool = 57;
  10901. _iframe = $$("iframe", {
  10902. "allowpaymentrequest": "allowpaymentrequest",
  10903. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10904. "webkitallowfullscreen": "",
  10905. "mozallowfullscreen": "",
  10906. "frameborder": "no",
  10907. "border": "0",
  10908. "scrolling ": "no",
  10909. "style": {
  10910. "cssText": "border:0;width:100%;height:100%"
  10911. },
  10912. "src": "https://pi.cocorobo.cn/"
  10913. })
  10914. _box.appendChild(_iframe);
  10915. _box.appendChild(_jie);
  10916. _formdiv = new U.UF.UI.form(
  10917. "CocoPi",
  10918. _box, {
  10919. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10920. "style": {
  10921. "width": "90%",
  10922. "height": "90%",
  10923. "overflow": 'hidden'
  10924. },
  10925. "onresize": function () { }
  10926. }, {
  10927. closecallback: function () { }
  10928. }, {
  10929. "style": {
  10930. "height": "36px"
  10931. }
  10932. }).form; //创建窗体
  10933. _taskbar = {
  10934. "id": str + _formdiv.id,
  10935. "style": {
  10936. "backgroundImage": "url(/img/icon/cocopi.png)"
  10937. },
  10938. "name": "CocoPi",
  10939. "forms": _formdiv,
  10940. "click": function () {
  10941. U.MD.D.I.openApplication(str, obj, info);
  10942. }
  10943. }
  10944. break;
  10945. }
  10946. if (_iframe) {
  10947. if (str == 'CocoPi') {
  10948. _iframe = _formdiv.querySelector('iframe')
  10949. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10950. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10951. })
  10952. if (onloadListener) {
  10953. _iframe.contentDocument.location.reload()
  10954. } else {
  10955. _iframe.contentDocument.location.reload()
  10956. }
  10957. }
  10958. _jie.onclick = async () => {
  10959. let text = ''
  10960. if (aTool == 57) {
  10961. text = _iframe.contentWindow.getLoadXmlStr()
  10962. }
  10963. _loading.style.display = 'flex'
  10964. console.log(_loading);
  10965. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10966. _loading.style.display = 'none'
  10967. let _div = document.createElement('div')
  10968. _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;"
  10969. let _inner = document.createElement('div')
  10970. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10971. _inner.innerHTML = "上传成功"
  10972. _div.appendChild(_inner)
  10973. _iframe.contentWindow.window.document.body.appendChild(_div)
  10974. _div.onclick = () => {
  10975. _iframe.contentWindow.window.document.body.removeChild(_div)
  10976. }
  10977. setTimeout(() => {
  10978. _iframe.contentWindow.window.document.body.removeChild(_div)
  10979. }, 1000);
  10980. }, [], { "type": "POST", "withCredentials": true });
  10981. }
  10982. }
  10983. }
  10984. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10985. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10986. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10987. _userid = student.userid, //登录用户id
  10988. _username = student.student //用户名字
  10989. let _iframe;
  10990. let _cid = cid,
  10991. _stage = stage,
  10992. _task = task,
  10993. _tool = tool;
  10994. var _jie = $$("div", {
  10995. "style": {
  10996. "position": "absolute",
  10997. "bottom": "50px",
  10998. "right": "50px",
  10999. "zIndex": "9999",
  11000. "backgroundColor": "#2268bc",
  11001. "color": "#fff",
  11002. "padding": "12px 20px",
  11003. "cursor": "pointer",
  11004. "borderRadius": "4px",
  11005. },
  11006. "innerHTML": "提交作业"
  11007. })
  11008. let aTool = ''
  11009. let _loading = document.createElement('div')
  11010. _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;"
  11011. // _loading.id = "";
  11012. let _lchild = document.createElement('div')
  11013. let _limg = document.createElement('img')
  11014. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11015. _limg.style = "width: 26px;margin-right: 10px;"
  11016. _lchild.appendChild(_limg)
  11017. let _lspan = document.createElement('span')
  11018. _lspan.innerHTML = "上传中..."
  11019. _lchild.appendChild(_lspan)
  11020. _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%);"
  11021. _loading.appendChild(_lchild)
  11022. var _box = $$('div', {
  11023. "style": {
  11024. "position": "relative",
  11025. "width": "100%",
  11026. "height": "100%",
  11027. },
  11028. })
  11029. _box.appendChild(_loading)
  11030. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11031. switch (str) {
  11032. case "CocoPi":
  11033. aTool = 57;
  11034. _iframe = $$("iframe", {
  11035. "allowpaymentrequest": "allowpaymentrequest",
  11036. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11037. "webkitallowfullscreen": "",
  11038. "mozallowfullscreen": "",
  11039. "frameborder": "no",
  11040. "border": "0",
  11041. "scrolling ": "no",
  11042. "style": {
  11043. "cssText": "border:0;width:100%;height:100%"
  11044. },
  11045. "src": "https://pi.cocorobo.cn/"
  11046. })
  11047. _box.appendChild(_iframe);
  11048. _box.appendChild(_jie);
  11049. _formdiv = new U.UF.UI.form(
  11050. "CocoPi-" + _username,
  11051. _box, {
  11052. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11053. "style": {
  11054. "width": "90%",
  11055. "height": "90%",
  11056. "overflow": 'hidden'
  11057. },
  11058. "onresize": function () { }
  11059. }, {
  11060. closecallback: function () { }
  11061. }, {
  11062. "style": {
  11063. "height": "36px"
  11064. }
  11065. }).form; //创建窗体
  11066. _taskbar = {
  11067. "id": str + _formdiv.id,
  11068. "style": {
  11069. "backgroundImage": "url(/img/icon/cocopi.png)"
  11070. },
  11071. "name": "CocoPi",
  11072. "forms": _formdiv,
  11073. "click": function () {
  11074. U.MD.D.I.openApplication(str, obj, info);
  11075. }
  11076. }
  11077. break;
  11078. }
  11079. if (_iframe) {
  11080. if (str == 'CocoPi') {
  11081. _iframe = _formdiv.querySelector('iframe')
  11082. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11083. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11084. })
  11085. if (onloadListener) {
  11086. _iframe.contentDocument.location.reload()
  11087. } else {
  11088. _iframe.contentDocument.location.reload()
  11089. }
  11090. }
  11091. _jie.onclick = async () => {
  11092. let text = ''
  11093. if (aTool == 57) {
  11094. text = _iframe.contentWindow.getLoadXmlStr()
  11095. }
  11096. _loading.style.display = 'flex'
  11097. console.log(_loading);
  11098. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11099. _loading.style.display = 'none'
  11100. let _div = document.createElement('div')
  11101. _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;"
  11102. let _inner = document.createElement('div')
  11103. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11104. _inner.innerHTML = "上传成功"
  11105. _div.appendChild(_inner)
  11106. _iframe.contentWindow.window.document.body.appendChild(_div)
  11107. _div.onclick = () => {
  11108. _iframe.contentWindow.window.document.body.removeChild(_div)
  11109. }
  11110. setTimeout(() => {
  11111. _iframe.contentWindow.window.document.body.removeChild(_div)
  11112. }, 1000);
  11113. }, [], { "type": "POST", "withCredentials": true });
  11114. }
  11115. }
  11116. }
  11117. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11118. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11119. if (res.value[0].length > 0) {
  11120. if (atool == 57) {
  11121. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11122. }
  11123. } else {
  11124. if (atool == 57) {
  11125. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11126. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11127. }
  11128. }
  11129. }, [], { "type": "POST", "withCredentials": true });
  11130. }
  11131. U.MD.D.addOp = function(text,type,time){
  11132. var userInfo = US.userInfo;
  11133. if(Object.keys(userInfo).length !== 0){
  11134. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11135. }, [], { "type": "POST", "withCredentials": true });
  11136. }
  11137. }